search for: reload_ovirt_ear

Displaying 1 result from an estimated 1 matches for "reload_ovirt_ear".

Did you mean: reload_ovirt_early
2010 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
...t() { +start_ovirt_early () { touch $VAR_SUBSYS_OVIRT_EARLY # oVirt boot parameters # BOOTIF=link|eth*|<MAC> (appended by pxelinux) @@ -511,18 +511,23 @@ EOF return 0 } -stop() { +stop_ovirt_early () { echo -n "Stopping ovirt-early: " success } +reload_ovirt_early () { + stop_ovirt_early + start_ovirt_early +} + case "$1" in start) [ -f "$VAR_SUBSYS_NODE_CONFIG" ] && exit 0 echo -n "Starting ovirt-early: " { log "Starting ovirt-early" - start +...