diff options
Diffstat (limited to 'debian/strongswan-starter.postinst')
-rw-r--r-- | debian/strongswan-starter.postinst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/strongswan-starter.postinst b/debian/strongswan-starter.postinst index 52e895a88..9e4d7b10e 100644 --- a/debian/strongswan-starter.postinst +++ b/debian/strongswan-starter.postinst @@ -79,7 +79,7 @@ enable_daemon_start() { daemon=$1 protocol=$2 - echo -n "Enabling ${protocol} support by pluto ... " + echo -n "Enabling ${protocol} support by ${daemon}... " if [ -e $CONF_FILE ] && egrep -q "^\w+${daemon}start=yes\w*$" $CONF_FILE; then echo "already enabled" elif [ -e $CONF_FILE ] && egrep -q "^\w+${daemon}start=no\w*$" $CONF_FILE; then @@ -103,7 +103,7 @@ disable_daemon_start() { daemon=$1 protocol=$2 - echo -n "Disabling ${protocol} support by pluto ... " + echo -n "Disabling ${protocol} support by ${daemon}... " if [ -e $CONF_FILE ] && ( egrep -q "^\w+${daemon}start=no\w*$" $CONF_FILE || egrep -q "^\w+#\w*${daemon}start=(yes|no)\w*$" $CONF_FILE ); then echo "already disabled" |