summaryrefslogtreecommitdiffstats
path: root/installer
diff options
context:
space:
mode:
authorLuis Eduardo <leduardo@lsd.ufcg.edu.br>2017-12-27 19:47:46 -0300
committerLuis Eduardo <leduardo@lsd.ufcg.edu.br>2018-01-27 17:56:42 -0300
commitb6906a80c726b64c6c1406358af55adb2a5facda (patch)
tree518f71cd97d6db5aa9d4aafebbbac40c78003a3f /installer
parentc0e650dabbf9e6f7359dbdfe9e1f76481b017d76 (diff)
Add netdata to ceph group
Diffstat (limited to 'installer')
-rw-r--r--installer/functions.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/installer/functions.sh b/installer/functions.sh
index 21859e72e8..55554ba3ed 100644
--- a/installer/functions.sh
+++ b/installer/functions.sh
@@ -798,6 +798,7 @@ NETDATA_ADDED_TO_ADM=0
NETDATA_ADDED_TO_NSD=0
NETDATA_ADDED_TO_PROXY=0
NETDATA_ADDED_TO_SQUID=0
+NETDATA_ADDED_TO_CEPH=0
add_netdata_user_and_group() {
if [ ${UID} -eq 0 ]
then
@@ -811,6 +812,7 @@ add_netdata_user_and_group() {
portable_add_user_to_group nsd netdata && NETDATA_ADDED_TO_NSD=1
portable_add_user_to_group proxy netdata && NETDATA_ADDED_TO_PROXY=1
portable_add_user_to_group squid netdata && NETDATA_ADDED_TO_SQUID=1
+ portable_add_user_to_group ceph netdata && NETDATA_ADDED_TO_CEPH=1
return 0
fi