diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2006-08-03 15:35:50 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2006-08-03 15:35:50 +0000 |
commit | 902c3519f67eaa7119c02bd78b65bf97f28103be (patch) | |
tree | 394d0c589d2471fe5d12ecac0647960165177943 /debian/buildsys/common | |
parent | 791c0fef838d42b584c87504ba866cafafc74dcb (diff) | |
download | bcfg2-902c3519f67eaa7119c02bd78b65bf97f28103be.tar.gz bcfg2-902c3519f67eaa7119c02bd78b65bf97f28103be.tar.bz2 bcfg2-902c3519f67eaa7119c02bd78b65bf97f28103be.zip |
More packaging updates from Ressu
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2038 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'debian/buildsys/common')
-rw-r--r-- | debian/buildsys/common/bcfg2.init | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/debian/buildsys/common/bcfg2.init b/debian/buildsys/common/bcfg2.init index e7466f18d..1c2836c7a 100644 --- a/debian/buildsys/common/bcfg2.init +++ b/debian/buildsys/common/bcfg2.init @@ -22,15 +22,18 @@ # This might need some better logic BCFG2=/usr/sbin/bcfg2 +# Set default options +# You can set script specific options with BCFG2_OPTIONS_INIT BCFG2_OPTIONS="-q" # Disabled per default BCFG2_ENABLED=0 +BCFG2_INIT=0 # Include default startup configuration if exists test -f "/etc/default/bcfg2" && . /etc/default/bcfg2 -test "$BCFG2_ENABLED" != "0" || exit 0 +["$BCFG2_ENABLED" == "0" -o "$BCFG2_INIT" == 0 ] && exit 0 # Exit if bcfg2 doesn't exist and is not executable test -x $BCFG2 || exit 5 @@ -41,7 +44,7 @@ test -x $BCFG2 || exit 5 case "$1" in start) echo -n "Running configuration management client: " - ${BCFG2} ${BCFG2_OPTIONS} + ${BCFG2} ${BCFG2_OPTIONS} ${BCFG2_OPTIONS_INIT} STATUS=$? if [ "$STATUS" = 0 ] then |