Created
July 13, 2012 17:15
-
-
Save jrob00/3106071 to your computer and use it in GitHub Desktop.
Installing apache traffic server with yum
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
// make it available to yum: | |
echo "### Name: NetDNA RPM Repo | |
### URL: http://repo.netdna.com | |
[netdna] | |
name = NetDNA Repo | |
baseurl = http://master.repo.netdna.com/netdna/$basearch/ | |
enabled = 1 | |
protect = 0 | |
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-netdna | |
gpgcheck = 1 | |
[netdna-testing] | |
name = NetDNA Testing Repo | |
baseurl = http://master.repo.netdna.com/netdna-testing/$basearch/ | |
enabled = 0 | |
protect = 0 | |
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-netdna | |
gpgcheck = 1 | |
# Really this is BETA and not confirmed to work yet | |
[netdna-beta] | |
name = NetDNA Beta Repo | |
baseurl = http://master.repo.netdna.com/netdna-beta/$basearch/ | |
enabled = 0 | |
protect = 0 | |
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-netdna | |
gpgcheck = 1" > /etc/yum.repos.d/netdna.repo | |
yum install trafficserver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment