From 08ecfb8a677ed8960a3cd671e7047b8ccc28919b Mon Sep 17 00:00:00 2001 From: Jack Tench Date: Mon, 16 May 2016 19:43:13 +0100 Subject: [PATCH] Replace sudo with su in init script To avoid issues starting service when 'Defaults requiretty' is enabled in the sudoers file. Fixes #1204 closes #1205 --- scripts/init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/init.sh b/scripts/init.sh index f104813dd..1994deb39 100755 --- a/scripts/init.sh +++ b/scripts/init.sh @@ -138,7 +138,7 @@ case $1 in if which start-stop-daemon > /dev/null 2>&1; then start-stop-daemon --chuid $USER:$GROUP --start --quiet --pidfile $pidfile --exec $daemon -- -pidfile $pidfile -config $config -config-directory $confdir $TELEGRAF_OPTS >>$STDOUT 2>>$STDERR & else - nohup sudo -u $USER $daemon -pidfile $pidfile -config $config -config-directory $confdir $TELEGRAF_OPTS >>$STDOUT 2>>$STDERR & + su -s /bin/sh -c "nohup $daemon -pidfile $pidfile -config $config -config-directory $confdir $TELEGRAF_OPTS >>$STDOUT 2>>$STDERR &" $USER fi log_success_msg "$name process was started" ;;