From: Gunnar Beutner Date: Fri, 27 Sep 2013 09:22:18 +0000 (+0200) Subject: Fix configuration path in the i2endfeature script. X-Git-Tag: v0.0.3~370 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71e416a23b82c2a45a618567508c49122f94d4cc;p=icinga2 Fix configuration path in the i2endfeature script. --- diff --git a/tools/i2enfeature.in b/tools/i2enfeature.in index a83b1a1da..f7b6f0b82 100644 --- a/tools/i2enfeature.in +++ b/tools/i2enfeature.in @@ -27,7 +27,7 @@ if [ -z "$1" ]; then echo echo -n "Available feature: " - for file in $ICINGA2CONFDIR/mods-available/*.conf; do + for file in $ICINGA2CONFDIR/features-available/*.conf; do echo -n $(basename -- $file .conf) done @@ -38,27 +38,27 @@ fi FEATURE=$1 -if [ ! -e $ICINGA2CONFDIR/mods-available/$FEATURE.conf ]; then +if [ ! -e $ICINGA2CONFDIR/features-available/$FEATURE.conf ]; then echo "The feature '$FEATURE' does not exist." exit 1 fi if [ "$TOOL" = "i2enfeature" ]; then - if [ -e $ICINGA2CONFDIR/mods-enabled/$FEATURE.conf ]; then + if [ -e $ICINGA2CONFDIR/features-enabled/$FEATURE.conf ]; then echo "The feature '$FEATURE' is already enabled." exit 0 fi - ln -s ../mods-available/$FEATURE.conf $ICINGA2CONFDIR/mods-enabled/ + ln -s ../features-available/$FEATURE.conf $ICINGA2CONFDIR/features-enabled/ echo "Module '$FEATURE' was enabled." elif [ "$TOOL" = "i2disfeature" ]; then - if [ ! -e $ICINGA2CONFDIR/mods-enabled/$FEATURE.conf ]; then + if [ ! -e $ICINGA2CONFDIR/features-enabled/$FEATURE.conf ]; then echo "The feature '$FEATURE' is already disabled." exit 0 fi - rm -f $ICINGA2CONFDIR/mods-enabled/$FEATURE.conf + rm -f $ICINGA2CONFDIR/features-enabled/$FEATURE.conf echo "Module '$FEATURE' was disabled." fi