diff options
author | Erik Sjölund <erik.sjolund@gmail.com> | 2022-01-15 20:57:59 +0100 |
---|---|---|
committer | Erik Sjölund <erik.sjolund@gmail.com> | 2022-01-15 22:08:42 +0100 |
commit | 3c2a5947c243ccbc611c1846c685b73de4462242 (patch) | |
tree | a58b961c64c2bb1e486e30f58de8ab1b048f80e6 /cni | |
parent | 3c9e41bb5393e0a857d8755bb50345544cc31b50 (diff) | |
download | podman-3c2a5947c243ccbc611c1846c685b73de4462242.tar.gz podman-3c2a5947c243ccbc611c1846c685b73de4462242.tar.bz2 podman-3c2a5947c243ccbc611c1846c685b73de4462242.zip |
fix default branch links
* Replace https://github.com/containers/podman/blob/master
with https://github.com/containers/podman/blob/main
to match the new default branch "main". Previously
the default branch was "master". This is the only
occurence found in the code.
* Replace https://raw.githubusercontent.com/containers/libpod/master
with https://raw.githubusercontent.com/containers/podman/main
Signed-off-by: Erik Sjölund <erik.sjolund@gmail.com>
Diffstat (limited to 'cni')
-rw-r--r-- | cni/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cni/README.md b/cni/README.md index 12c890ce8..8bcd4327a 100644 --- a/cni/README.md +++ b/cni/README.md @@ -11,7 +11,7 @@ For example a basic network configuration can be achieved with: ```bash sudo mkdir -p /etc/cni/net.d -curl -qsSL https://raw.githubusercontent.com/containers/libpod/master/cni/87-podman-bridge.conflist | sudo tee /etc/cni/net.d/87-podman-bridge.conflist +curl -qsSL https://raw.githubusercontent.com/containers/podman/main/cni/87-podman-bridge.conflist | sudo tee /etc/cni/net.d/87-podman-bridge.conflist ``` Dependent upon your CNI configuration, you will need to install as a minimum the `port` and `bridge` [CNI plugins](https://github.com/containernetworking/plugins) into `/opt/cni/bin` (or the directory specified by `cni_plugin_dir` in containers.conf). Please refer to the [CNI](https://github.com/containernetworking) project page in GitHub for more information. |