search for: stop_ovirt_firstboot

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

2010 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
...# by default in standalone, disable collectd until server is configured service collectd stop > /dev/null 2>&1 @@ -74,7 +74,17 @@ start () ovirt_store_firstboot_config >> $OVIRT_LOGFILE 2>&1 - rm -f $lockfile + rm -f $VAR_SUBSYS_OVIRT_FIRSTBOOT +} + +stop_ovirt_firstboot () { + echo -n "Stopping ovirt-firstboot: " + success +} + +reload_ovirt_firstboot () { + stop_ovirt_firstboot + start_ovirt_firstboot } case "$1" in @@ -85,7 +95,7 @@ case "$1" in printf "Starting ovirt-firstboot: " - star...