Created
November 3, 2012 00:41
-
-
Save cheald/4005272 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/yourconfig.vcl" | |
# Hostname and management port | |
# (defined in /etc/default/varnish or on startup) | |
HOSTPORT="localhost:6082" | |
NOW=`date +%s` | |
error() | |
{ | |
echo 1>&2 "Failed to reload $FILE." | |
exit 1 | |
} | |
varnishadm -T $HOSTPORT vcl.load reload$NOW $FILE || error | |
varnishadm -T $HOSTPORT vcl.use reload$NOW || error | |
echo Current configs: | |
varnishadm -T $HOSTPORT vcl.list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment