Fix help text for icinga2-{en,dis}able-feature.

Refs #6315
This commit is contained in:
Michael Friedrich 2014-05-29 15:24:13 +02:00
parent 63c7512fd9
commit 020b4a3615
1 changed files with 3 additions and 3 deletions

View File

@ -10,12 +10,12 @@ fi
if [ -z "$1" ]; then
echo "Syntax: $0 <features separated with whitespaces>"
echo " Example: $0 checker ido-mysql livestatus"
echo " Example: $0 checker notification mainlog"
if [ "$TOOL" = "icinga2-enable-feature" ]; then
echo "Enables the specified feature."
echo "Enables the specified feature(s)."
else
echo "Disables the specified feature."
echo "Disables the specified feature(s)."
fi
echo