Browse Source

add varnish_configtest

master
Jonathan "Duke" Leto 11 years ago
parent
commit
99f3254ec2
  1. 13
      bin/varnish_configtest

13
bin/varnish_configtest

@ -0,0 +1,13 @@
#!/bin/sh
# from http://unix.stackexchange.com/questions/35863/varnish-configtest
tmpfile=$(mktemp)
trap 'rm -f $tmpfile' 0
varnishd -C -f /etc/varnish/default.vcl > $tmpfile
echo
if [ ! -s $tmpfile ]; then
echo "ERROR: There are errors in the varnish configuration." >&2
exit 1
fi
Loading…
Cancel
Save