search for: 752564a

Displaying 3 results from an estimated 3 matches for "752564a".

Did you mean: 652564
2010 Mar 11
1
[PATCH] Changes the order of ovirt-early and ovirt-awake.
...ovirt-awake -> ovirt -> ovirt-post Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt | 2 +- scripts/ovirt-awake | 1 + scripts/ovirt-early | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ovirt b/scripts/ovirt index 752564a..d2e338d 100755 --- a/scripts/ovirt +++ b/scripts/ovirt @@ -4,7 +4,7 @@ # ### BEGIN INIT INFO # Provides: ovirt -# Required-Start: ovirt-early +# Required-Start: ovirt-awake # Default-Start: 2 3 4 5 # Description: Performs managed node configuration functions. ### END INIT INFO diff --git a/s...
2010 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
...-awake | 20 +++++++++++++++++++- scripts/ovirt-early | 16 ++++++++++------ scripts/ovirt-firstboot | 28 ++++++++++++++++++---------- scripts/ovirt-post | 16 ++++++++++------ 5 files changed, 68 insertions(+), 29 deletions(-) diff --git a/scripts/ovirt b/scripts/ovirt index 752564a..ef00f02 100755 --- a/scripts/ovirt +++ b/scripts/ovirt @@ -71,7 +71,7 @@ ovirt_start() { fi } -start() { +start_ovirt () { touch $VAR_SUBSYS_OVIRT case $OVIRT_RUNTIME_MODE in "ovirt") @@ -90,18 +90,24 @@ start() { return $RC } -stop() { +stop_ovirt () {...
2010 Mar 10
1
[PATCH node] Fix reboot issue
...gi?id=519366 for details. Signed-off-by: Mike Burns <mburns at redhat.com> --- scripts/ovirt | 2 +- scripts/ovirt-firstboot | 2 +- scripts/ovirt-post | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/ovirt b/scripts/ovirt index 3059d35..752564a 100755 --- a/scripts/ovirt +++ b/scripts/ovirt @@ -114,7 +114,7 @@ case "$1" in start ;; stop) - stop + rm -f /var/lock/subsys/ovirt ;; *) echo "Usage: ovirt {start}" diff --git a/scripts/ovirt-firstboot b/scripts/ovirt...