diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-04-30 13:26:57 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-04-30 13:26:57 -0400 |
commit | 3cdb98a2821aeae67ae7a46e1539ddf459526e46 (patch) | |
tree | 3ffecac12ea7967b9cfa62aa63f06b997056a058 /docs/tutorials | |
parent | 488117cb99705f6766ee82b78063951f87099b5b (diff) | |
download | podman-3cdb98a2821aeae67ae7a46e1539ddf459526e46.tar.gz podman-3cdb98a2821aeae67ae7a46e1539ddf459526e46.tar.bz2 podman-3cdb98a2821aeae67ae7a46e1539ddf459526e46.zip |
Use 'sudo tee' in tutorial so install works as non-root
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'docs/tutorials')
-rw-r--r-- | docs/tutorials/podman_tutorial.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/podman_tutorial.md b/docs/tutorials/podman_tutorial.md index 2abd9c50f..f972853e6 100644 --- a/docs/tutorials/podman_tutorial.md +++ b/docs/tutorials/podman_tutorial.md @@ -99,7 +99,7 @@ sudo cp bin/* /usr/libexec/cni Add a most basic network config ```console mkdir -p /etc/cni/net.d -curl -qsSL https://raw.githubusercontent.com/containers/libpod/master/cni/87-podman-bridge.conflist | tee /etc/cni/net.d/99-loopback.conf +curl -qsSL https://raw.githubusercontent.com/containers/libpod/master/cni/87-podman-bridge.conflist | sudo tee /etc/cni/net.d/99-loopback.conf ``` #### Installing runc ```console |