diff options
author | hsandid <halsandi@cisco.com> | 2023-10-30 18:47:36 +0100 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2023-10-31 23:54:28 +0000 |
commit | e75176a257bae8753c334f25fe09aa790cf4bf48 (patch) | |
tree | 62243c18e0a00b427bad3d01c7d34bc0e2749a12 /docs/usecases/containers/containerSetup.rst | |
parent | e908fe7e474d6b7b1e9e1bd2fb39423e1552a35f (diff) |
docs: Updated "VPP with Containers" use-case section
Type: improvement
Modified "VPP with Containers" doc section to run on Ubuntu 22.04 LTS.
Change-Id: Ic09b88cf0e3b492711222a1bb24552de964a7d03
Signed-off-by: hsandid <halsandi@cisco.com>
Diffstat (limited to 'docs/usecases/containers/containerSetup.rst')
-rw-r--r-- | docs/usecases/containers/containerSetup.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/usecases/containers/containerSetup.rst b/docs/usecases/containers/containerSetup.rst index 8c458f77cfd..31b81711e84 100644 --- a/docs/usecases/containers/containerSetup.rst +++ b/docs/usecases/containers/containerSetup.rst @@ -18,10 +18,9 @@ Run the linux DHCP setup and install VPP: .. code-block:: console - root@cone:/# resolvconf -d eth0 root@cone:/# dhclient - root@cone:/# apt-get install -y wget - root@cone:/# echo "deb [trusted=yes] https://nexus.fd.io/content/repositories/fd.io.ubuntu.xenial.main/ ./" | sudo tee -a /etc/apt/sources.list.d/99fd.io.list + root@cone:/# apt-get install -y curl + root@cone:/# curl -s https://packagecloud.io/install/repositories/fdio/release/script.deb.sh | sudo bash root@cone:/# apt-get update root@cone:/# apt-get install -y --force-yes vpp root@cone:/# sh -c 'echo \"\\ndpdk {\\n no-pci\\n}\" >> /etc/vpp/startup.conf' |