Changing file permissions of glusterfs log files

This patch avoids creation of zero sized glusterfs log files by
changing the file permissions from 600 to 755.

Change-Id: I2c88781052f5cb334de21ffe1f98f13240820fa5
This commit is contained in:
Bharat Kumar Kobagana 2015-08-19 16:29:07 +05:30
parent b52022d3e1
commit a80ea210db
2 changed files with 4 additions and 4 deletions

View File

@ -25,10 +25,6 @@ function install_glusterfs {
fi
_create_glusterfs_disk
# Changing file permissions of glusterfs logs.
# This avoids creation of zero sized glusterfs log files while running CI job (Bug: 1455951).
sudo chmod 755 -R /var/log/glusterfs/
}
# Start gluster service

View File

@ -116,6 +116,10 @@ elif [[ "$1" == "stack" && "$2" == "post-config" ]]; then
echo_summary "Configuring GlusterFS as a backend for Manila"
configure_manila_backend_glusterfs
fi
elif [[ "$1" == "stack" && "$2" == "extra" ]]; then
# Changing file permissions of glusterfs logs.
# This avoids creation of zero sized glusterfs log files while running CI job (Bug: 1455951).
sudo chmod 755 -R /var/log/glusterfs/
fi
if [[ "$1" == "unstack" ]]; then