search for: ovirt_logfile

Displaying 10 results from an estimated 10 matches for "ovirt_logfile".

2010 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
...;$1" in start) [ -f "$VAR_SUBSYS_OVIRT" ] && exit 0 echo -n "Starting ovirt: " { log "Starting ovirt" - start + start_ovirt log "Completed ovirt" } >> $OVIRT_LOGFILE 2>&1 test $? == 0 && success || failure @@ -110,11 +116,10 @@ case "$1" in status $prog ;; reload) - stop - start + reload_ovirt ;; stop) - rm -f /var/lock/subsys/ovirt + stop_ovirt ;;...
2010 Mar 16
1
[PATCH] ovirt-awake improvements
...$1" in echo -n "Starting ovirt-awake: " [ -f "$VAR_SUBSYS_NODECONFIG" ] && exit 0 { - start + start_ovirt_awake RETVAL=$? log "Completed ovirt-awake: RETVAL=$?" } >> $OVIRT_LOGFILE 2>&1 -- 1.6.6.1
2010 Feb 10
1
RFC: First pass at making the node generic...
I'm looking for feedback on this first patch. The node has been pushed towards a more generic boot process. With this patch the node can now boot up and execute a few specifically-named scripts that reside in /etc/node.d/ at key points during the startup. After this goes upstream, the next step will be to define in more detail the remote interfaces for the "managed" runtime
2010 Jan 18
0
[PATCH] Fixed unpersisting directories and persisting directories that contain persisted files.
...+++++++++++++---------------- 1 files changed, 70 insertions(+), 37 deletions(-) diff --git a/scripts/ovirt-functions b/scripts/ovirt-functions index 6435387..7ed6491 100644 --- a/scripts/ovirt-functions +++ b/scripts/ovirt-functions @@ -1,4 +1,4 @@ -# -*-Shell-script-*- +\# -*-Shell-script-*- OVIRT_LOGFILE=/var/log/ovirt.log OVIRT_TMP_LOGFILE=/tmp/ovirt.log @@ -458,28 +458,41 @@ ovirt_store_config() { if grep -q " /config ext3" /proc/mounts; then printf "storing to /config :\n" for p in "$@"; do - f=$(readlink -f $p) - printf...
2010 Mar 23
1
Resend of one patch, new to follow on...
The first patch in this set was submitted in January but never ACK'd. The following three are follow on patches to fix other issues that have come up.
2009 Oct 01
1
Repost of Patch 6/6 for ovirt-node
All other patches from the sequence remain unchanged. Repost of patch 6 based on comments from Joey to follow. Mike
2011 Aug 11
1
[PATCH] fix augtool calls
parse input augtool strings to oper,key,value --- scripts/network.py | 32 ++++++++++++++++---------------- 1 files changed, 16 insertions(+), 16 deletions(-) diff --git a/scripts/network.py b/scripts/network.py index f51ee7c..65b551c 100644 --- a/scripts/network.py +++ b/scripts/network.py @@ -165,11 +165,11 @@ class Network: ntpconf = ntpconf.split("\n") for line
2009 Sep 26
10
Adding handling for Multipath storage devices
The following patches introduce support for multipath and cciss devices to the ovirt-node and node-image. Comments are appreciated. These patches assume that the 3 patches (2 node, 1 node-image) from Joey are all incorporated. Mike
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
...pts/ovirtfunctions.py b/scripts/ovirtfunctions.py new file mode 100644 index 0000000..f2b9e39 --- /dev/null +++ b/scripts/ovirtfunctions.py @@ -0,0 +1,672 @@ +#!/usr/bin/python +import subprocess +import os +from subprocess import Popen, PIPE, STDOUT +import tempfile +import string +import sys + + +OVIRT_LOGFILE="/var/log/ovirt.log" +OVIRT_TMP_LOGFILE="/tmp/ovirt.log" +# label of the oVirt partition +OVIRT_LABEL="OVIRT" +# configuration values are loaded in the following order: +# 1. /etc/sysconfig/node-config sets the default values +# 2. /etc/default/ovirt is loaded to overr...
2009 Oct 14
8
Refactor ovirt-node code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora. Moves tools and kickstart files form ovirt-node-image to subpackage ovirt-node-recipe. Removes old sub packages form ovirt-node, stateless, logos, selinux. Modifies init scripts to meet Fedora packaging guidelines: added status, reload, and lockfile, rhbz: 514221 Added License file.