Last active
August 29, 2015 14:12
-
-
Save Marko-M/f359c30a7514a3e94c40 to your computer and use it in GitHub Desktop.
Varnish 3.x for Ubuntu 14.10
This file contains hidden or 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 | |
# Varnish 3.x for Ubuntu 14.10 | |
# Add repository | |
sudo add-apt-repository ppa:marko-techytalk.info/varnish-3.0 | |
# Update sources | |
sudo apt-get update | |
# Install Varnish 3.x | |
sudo apt-get install libvarnishapi1=3.0.6-1ubuntu1ppa1~utopic1 varnish=3.0.6-1ubuntu1ppa1~utopic1 | |
# Hold it to prevent update to Varnish 4.x | |
sudo apt-mark hold libvarnishapi1 varnish | |
# Check current Varnish version | |
varnishd -V |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment