Accepting request 102101 from home:computersalat:devel:sysmgmnt

folder changes, add cron file, some init script fixes

OBS-URL: https://build.opensuse.org/request/show/102101
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement/cfengine?expand=0&rev=13
This commit is contained in:
Christian Wittmer
2012-01-30 19:10:38 +00:00
committed by Git OBS Bridge
parent e675c4f5cb
commit 1619e36516
6 changed files with 53 additions and 11 deletions

View File

@@ -71,13 +71,13 @@ test -x $CF_MON_BIN || { echo "$CF_MON_BIN not installed";
#. $FOO_CONFIG
## Check for promises file
CF_PROMISES=/var/lib/cfengine/inputs/promises.cf
CF_PROMISES=@workdir@/inputs/promises.cf
test -r $CF_PROMISES || { echo "$CF_PROMISES not existing";
if [ "$1" = "stop" ]; then exit 0;
else exit 6; fi; }
## Check for failsafe file
CF_FAILSAFE=/var/lib/cfengine/inputs/failsafe.cf
CF_FAILSAFE=@workdir@/inputs/failsafe.cf
test -r $CF_FAILSAFE || { echo "$CF_FAILSAFE not existing";
if [ "$1" = "stop" ]; then exit 0;
else exit 6; fi; }