diff options
author | Ray Kinsella <ray.kinsella@intel.com> | 2017-03-30 13:11:06 +0100 |
---|---|---|
committer | Ray Kinsella <ray.kinsella@intel.com> | 2017-03-30 13:11:55 +0100 |
commit | d5dd5a01002f3d04f79e7d51a51874529710c692 (patch) | |
tree | 365dfcfdc2b9d6ea0b6c81d2f07b3cff01e53912 | |
parent | a54fc6bd0805d7f60451d608cd4b4781197de34b (diff) |
vpp-userdemo: updated to use stable repo
Minor update to use the stable repository.
Change-Id: I1c08225f7e98f9d11b6443908afa68f63b380ffb
Signed-off-by: Ray Kinsella <ray.kinsella@intel.com>
-rwxr-xr-x | vpp-userdemo/install.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/vpp-userdemo/install.sh b/vpp-userdemo/install.sh index 3d96b82..d038de7 100755 --- a/vpp-userdemo/install.sh +++ b/vpp-userdemo/install.sh @@ -13,8 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -VPP_VERSION="17.01-rc0~287-g7e4edc8~b1622" - sysctl -w vm.nr_hugepages=1024 HUGEPAGES=`sysctl -n vm.nr_hugepages` if [ $HUGEPAGES != 1024 ]; then @@ -22,9 +20,9 @@ if [ $HUGEPAGES != 1024 ]; then exit fi -echo "deb https://nexus.fd.io/content/repositories/fd.io.master.ubuntu.trusty.main/ ./" | sudo tee -a /etc/apt/sources.list.d/99fd.io.list +echo "deb https://nexus.fd.io/content/repositories/fd.io.stable.1701.ubuntu.trusty.main/ ./" | sudo tee -a /etc/apt/sources.list.d/99fd.io.list apt-get -qq update -apt-get -qq install -y --force-yes vpp=$VPP_VERSION vpp-lib=$VPP_VERSION vpp-dpdk-dkms=$VPP_VERSION bridge-utils lxc +apt-get -qq install -y --force-yes vpp vpp-lib vpp-dpdk-dkms bridge-utils lxc service vpp start #Configure LXC network to create an inteface for Linux bridge and a unconsumed second inteface |