search for: 1ab0578

Displaying 2 results from an estimated 2 matches for "1ab0578".

Did you mean: 140578
2010 Mar 11
1
[PATCH] Changes the order of ovirt-early and ovirt-awake.
...ake +++ 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 diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 1ab0578..d561dc8 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -4,7 +4,6 @@ # ### BEGIN INIT INFO # Provides: ovirt-early -# Required-Start: ovirt-awake # Default-Start: 2 3 4 5 # Dewscription: Managed node early configuration service ### END INIT INFO -- 1.6.6.1
2010 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
...test $RETVAL == 0 && success || failure ;; + stop) + stop_ovirt_awake + ;; + + reload) + reload_ovirt_awake + ;; + *) echo "Usage: $0 start" RETVAL=2 diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 1ab0578..88070e3 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -172,7 +172,7 @@ configure_management_interface() { esac } -start() { +start_ovirt_early () { touch $VAR_SUBSYS_OVIRT_EARLY # oVirt boot parameters # BOOTIF=link|eth*|<MAC> (appended by pxelinux) @...