0003282253
-Use the fluentd package on the CentOS OpsTools repository created by the CentOS OpsTools SIG. -The user changed to fluentd for CentOS/RHEL/Oraclelinux -Plugins are installed as gems on CentOS/RHEL/Oraclelinux Change-Id: I4802618373cfa53d67d1dfe65be7abe1950b3d04
29 lines
864 B
Bash
29 lines
864 B
Bash
#!/bin/bash
|
|
|
|
# Give processes executed with the "kolla" group the permission to create files
|
|
# and sub-directories in the /var/log/kolla directory.
|
|
#
|
|
# Also set the setgid permission on the /var/log/kolla directory so that new
|
|
# files and sub-directories in that directory inherit its group id ("kolla").
|
|
|
|
if [[ "${KOLLA_BASE_DISTRO}" =~ debian|ubuntu ]]; then
|
|
USERGROUP="td-agent:kolla"
|
|
FLUENTD="td-agent"
|
|
else
|
|
USERGROUP="fluentd:kolla"
|
|
FLUENTD="fluentd"
|
|
fi
|
|
|
|
if [ ! -d /var/log/kolla ]; then
|
|
mkdir -p /var/log/kolla
|
|
fi
|
|
if [[ $(stat -c %U:%G /var/log/kolla) != "${USERGROUP}" ]]; then
|
|
sudo chown ${USERGROUP} /var/log/kolla
|
|
fi
|
|
if [[ $(stat -c %a /var/log/kolla) != "2775" ]]; then
|
|
sudo chmod 2775 /var/log/kolla
|
|
fi
|
|
if [[ $(stat -c %U:%G /var/lib/${FLUENTD}) != "${USERGROUP}" ]]; then
|
|
sudo chown ${USERGROUP} /var/lib/${FLUENTD}
|
|
fi
|