Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure that the drain log dir exists #284

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion jobs/cloud_controller_ng/templates/restart_drain.sh.erb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ function on_exit {
trap on_exit EXIT
echo "$BASHPID" > "$PIDFILE"

LOGFILE="/var/vcap/sys/log/cloud_controller_ng/drain/restart_drain.log"
LOGPATH="/var/vcap/sys/log/cloud_controller_ng/drain"
mkdir -p "$LOGPATH"
LOGFILE="$LOGPATH/restart_drain.log"
echo "$(date) - pid: $BASHPID - Monit triggered shutdown drain" >> "$LOGFILE"

# Unmonitor cloud_controller_ng. This also unmonitors nginx_cc and
Expand Down