diff options
Diffstat (limited to 'debian/buildsys/common/bcfg2.init')
-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 |