-
-
Save sergeifilippov/7803058 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Reload a varnish config | |
# Author: Kristian Lyngstol | |
FILE="/etc/varnish/ugc.vcl" | |
# Hostname and management port | |
# (defined in /etc/default/varnish or on startup) | |
HOSTPORT="localhost:6082" | |
NOW=`date +%s` | |
SECRET='/etc/varnish/secret' | |
NAME=$1 | |
if [ -z "$NAME" ] | |
then | |
NAME="reload$NOW" | |
fi | |
error() | |
{ | |
echo 1>&2 "Failed to reload $FILE." | |
exit 1 | |
} | |
varnishadm -T $HOSTPORT -S $SECRET vcl.load $NAME $FILE || error | |
varnishadm -T $HOSTPORT -S $SECRET vcl.use $NAME || error | |
echo Current configs: | |
varnishadm -T $HOSTPORT -S $SECRET vcl.list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment