You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
310 B
5 lines
310 B
#!/bin/sh
|
|
UUID=`cat /proc/sys/kernel/random/uuid`
|
|
/usr/sbin/varnishd -C -f /etc/varnish/default.vcl >/dev/null \
|
|
&&/usr/bin/varnishadm -T localhost:6082 -S /etc/varnish/secret "vcl.load vcl_$UUID /etc/varnish/default.vcl" \
|
|
&& /usr/bin/varnishadm -T localhost:6082 -S /etc/varnish/secret "vcl.use vcl_$UUID"
|