2013-09-27 11:16:35 +02:00
|
|
|
#!/bin/sh
|
2013-11-03 13:45:26 +01:00
|
|
|
ICINGA2CONFDIR=@CMAKE_INSTALL_FULL_SYSCONFDIR@/icinga2
|
2013-09-27 11:16:35 +02:00
|
|
|
|
|
|
|
TOOL=$(basename -- $0)
|
|
|
|
|
2013-10-18 22:11:40 +02:00
|
|
|
if [ "$TOOL" != "icinga2-enable-feature" -a "$TOOL" != "icinga2-disable-feature" ]; then
|
|
|
|
echo "Invalid tool name ($TOOL). Should be 'icinga2-enable-feature' or 'icinga2-disable-feature'."
|
2013-09-27 11:16:35 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$1" ]; then
|
|
|
|
echo "Syntax: $0 <feature>"
|
|
|
|
|
2013-10-18 22:11:40 +02:00
|
|
|
if [ "$TOOL" = "icinga2-enable-feature" ]; then
|
2013-09-27 11:16:35 +02:00
|
|
|
echo "Enables the specified feature."
|
|
|
|
else
|
|
|
|
echo "Disables the specified feature."
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo
|
2013-09-27 13:56:11 +02:00
|
|
|
echo -n "Available features: "
|
2013-09-27 11:16:35 +02:00
|
|
|
|
2013-09-27 11:22:18 +02:00
|
|
|
for file in $ICINGA2CONFDIR/features-available/*.conf; do
|
2013-10-01 08:39:42 +02:00
|
|
|
echo -n "$(basename -- $file .conf) "
|
2013-09-27 11:16:35 +02:00
|
|
|
done
|
|
|
|
|
2013-12-12 15:46:17 +01:00
|
|
|
echo
|
|
|
|
echo -n "Enabled features: "
|
|
|
|
|
|
|
|
for file in $ICINGA2CONFDIR/features-enabled/*.conf; do
|
|
|
|
echo -n "$(basename -- $file .conf) "
|
|
|
|
done
|
|
|
|
|
2013-09-27 11:16:35 +02:00
|
|
|
echo
|
|
|
|
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
FEATURE=$1
|
|
|
|
|
2013-09-27 11:22:18 +02:00
|
|
|
if [ ! -e $ICINGA2CONFDIR/features-available/$FEATURE.conf ]; then
|
2013-09-27 11:16:35 +02:00
|
|
|
echo "The feature '$FEATURE' does not exist."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2013-10-18 22:11:40 +02:00
|
|
|
if [ "$TOOL" = "icinga2-enable-feature" ]; then
|
2013-09-27 11:22:18 +02:00
|
|
|
if [ -e $ICINGA2CONFDIR/features-enabled/$FEATURE.conf ]; then
|
2013-09-27 11:16:35 +02:00
|
|
|
echo "The feature '$FEATURE' is already enabled."
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2013-09-27 11:22:18 +02:00
|
|
|
ln -s ../features-available/$FEATURE.conf $ICINGA2CONFDIR/features-enabled/
|
2013-09-27 11:16:35 +02:00
|
|
|
|
|
|
|
echo "Module '$FEATURE' was enabled."
|
2013-10-18 22:11:40 +02:00
|
|
|
elif [ "$TOOL" = "icinga2-disable-feature" ]; then
|
2013-09-27 11:22:18 +02:00
|
|
|
if [ ! -e $ICINGA2CONFDIR/features-enabled/$FEATURE.conf ]; then
|
2013-09-27 11:16:35 +02:00
|
|
|
echo "The feature '$FEATURE' is already disabled."
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2013-09-27 11:22:18 +02:00
|
|
|
rm -f $ICINGA2CONFDIR/features-enabled/$FEATURE.conf
|
2013-09-27 11:16:35 +02:00
|
|
|
|
|
|
|
echo "Module '$FEATURE' was disabled."
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Make sure to restart Icinga 2 for these changes to take effect."
|
|
|
|
exit 0
|