search for: d5865c5

Displaying 2 results from an estimated 2 matches for "d5865c5".

Did you mean: 58655
2010 Mar 16
1
[PATCH] ovirt-awake improvements
...rcing of NODE_CONFIG forward to not override the $OVIRT_RUNTIME_MODE read from karg Signed-off-by: Arthur CLEMENT <aclement at linagora.com> --- scripts/ovirt-awake | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/ovirt-awake b/scripts/ovirt-awake index d5865c5..5126a54 100755 --- a/scripts/ovirt-awake +++ b/scripts/ovirt-awake @@ -22,6 +22,7 @@ # ### BEGIN INIT INFO # Provides: ovirt-awake +# Required-Start: ovirt-early # Default-Start: 2 3 4 5 # Description: Managed node service to alert management servers. ### END INIT INFO @@ -30,7 +31,6 @@ # c...
2010 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
...$prog ;; reload) - stop - start + reload_ovirt ;; stop) - rm -f /var/lock/subsys/ovirt + stop_ovirt ;; *) echo "Usage: ovirt {start}" diff --git a/scripts/ovirt-awake b/scripts/ovirt-awake index bd50ffd..d5865c5 100755 --- a/scripts/ovirt-awake +++ b/scripts/ovirt-awake @@ -103,7 +103,7 @@ ovirt_startup () { # Override this method to provide support for notifying a management # system that the node has started and will be available after # system initialization -start () { +start_ovirt_awake () { l...