]> arthur.barton.de Git - netdata.git/commitdiff
netdata-installer.sh update: add netdata to haproxy group
authorIlya <ilyamaschenko@gmail.com>
Fri, 20 Jan 2017 06:19:39 +0000 (15:19 +0900)
committerIlya <ilyamaschenko@gmail.com>
Fri, 20 Jan 2017 06:19:39 +0000 (15:19 +0900)
netdata-installer.sh

index ff8def57820208ceb7ae2feaed718f6c41051811..874315437ec13e1961fcafb0c8009db371168689 100755 (executable)
@@ -693,6 +693,7 @@ run find ./system/ -type f -a \! -name \*.in -a \! -name Makefile\* -a \! -name
 NETDATA_ADDED_TO_DOCKER=0
 NETDATA_ADDED_TO_NGINX=0
 NETDATA_ADDED_TO_VARNISH=0
+NETDATA_ADDED_TO_HAPROXY=0
 if [ ${UID} -eq 0 ]
     then
     portable_add_group netdata
@@ -700,6 +701,7 @@ if [ ${UID} -eq 0 ]
     portable_add_user_to_group docker netdata && NETDATA_ADDED_TO_DOCKER=1
     portable_add_user_to_group nginx  netdata && NETDATA_ADDED_TO_NGINX=1
     portable_add_user_to_group varnish  netdata && NETDATA_ADDED_TO_VARNISH=1
+    portable_add_user_to_group haproxy  netdata && NETDATA_ADDED_TO_HAPROXY=1
 
     if [ -d /etc/logrotate.d -a ! -f /etc/logrotate.d/netdata ]
         then
@@ -1354,6 +1356,16 @@ if [ $? -eq 0 -a "${NETDATA_ADDED_TO_VARNISH}" = "1" ]
     echo "   gpasswd -d netdata varnish"
 fi
 
+getent group haproxy > /dev/null
+if [ $? -eq 0 -a "${NETDATA_ADDED_TO_HAPROXY}" = "1" ]
+    then
+    echo
+    echo "You may also want to remove the netdata user from the haproxy group"
+    echo "by running:"
+    echo "   gpasswd -d netdata haproxy"
+fi
+
+
 UNINSTALL
 chmod 750 netdata-uninstaller.sh