Skip to content

Commit

Permalink
fixes issue with rpm /var/log/telegraf permissions (influxdata#7909)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssoroka authored Jul 28, 2020
1 parent 2de23b2 commit 3bb1efc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scripts/rpm/post-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,15 @@ if [[ ! -d /etc/telegraf/telegraf.d ]]; then
mkdir -p /etc/telegraf/telegraf.d
fi

# If 'telegraf.conf' is not present use package's sample (fresh install)
if [[ ! -f /etc/telegraf/telegraf.conf ]] && [[ -f /etc/telegraf/telegraf.conf.sample ]]; then
cp /etc/telegraf/telegraf.conf.sample /etc/telegraf/telegraf.conf
fi

test -d $LOG_DIR || mkdir -p $LOG_DIR
chown -R -L telegraf:telegraf $LOG_DIR
chmod 755 $LOG_DIR

# Distribution-specific logic
if [[ -f /etc/redhat-release ]] || [[ -f /etc/SuSE-release ]]; then
# RHEL-variant logic
Expand Down

0 comments on commit 3bb1efc

Please sign in to comment.