mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
55 lines
1.3 KiB
Bash
Executable File
55 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
source "$(dirname $0)/../common/functions"
|
|
|
|
DOKKU_RSYSLOG_FILTER=/etc/rsyslog.d/99-dokku.conf
|
|
DOKKU_LOGROTATE_FILE=/etc/logrotate.d/dokku
|
|
|
|
flag_rsyslog_needs_restart=n
|
|
|
|
# This can be done unconditionally as mkdir -p
|
|
# exits gracefully if the path already exists
|
|
mkdir -m 775 -p "$DOKKU_LOGS_DIR"
|
|
chown syslog:dokku "$DOKKU_LOGS_DIR"
|
|
|
|
if [[ ! -f "$DOKKU_EVENTS_LOGFILE" ]]; then
|
|
touch "$DOKKU_EVENTS_LOGFILE"
|
|
# chown syslog:root might not work on SUSE
|
|
chown syslog:dokku "$DOKKU_EVENTS_LOGFILE"
|
|
chmod 664 "$DOKKU_EVENTS_LOGFILE"
|
|
fi
|
|
|
|
if [[ ! -f "$DOKKU_RSYSLOG_FILTER" ]]; then
|
|
cat >"$DOKKU_RSYSLOG_FILTER" <<EOF
|
|
:syslogtag, contains, "dokku" $DOKKU_EVENTS_LOGFILE
|
|
EOF
|
|
flag_rsyslog_needs_restart=y
|
|
fi
|
|
|
|
if [[ ! -f "$DOKKU_LOGROTATE_FILE" ]]; then
|
|
cat >"$DOKKU_LOGROTATE_FILE" <<EOF
|
|
$DOKKU_LOGS_DIR/*.log {
|
|
daily
|
|
rotate 7
|
|
missingok
|
|
notifempty
|
|
su syslog dokku
|
|
compress
|
|
delaycompress
|
|
postrotate
|
|
reload rsyslog >/dev/null 2>&1 || true
|
|
endscript
|
|
create 664 syslog dokku
|
|
}
|
|
EOF
|
|
flag_rsyslog_needs_restart=y
|
|
fi
|
|
|
|
if [[ "$flag_rsyslog_needs_restart" == "y" ]]; then
|
|
service rsyslog restart
|
|
fi
|
|
|
|
[[ ! "$DOKKU_EVENTS" ]] || dokku_log_pluginhook_call "$(basename $0)" "$@"
|
|
|
|
exit 0
|