diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-11-13 09:50:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-13 09:50:58 +0100 |
commit | b2d281afcc36a54bc168c3d1c16416e06966c4b3 (patch) | |
tree | 9bbdec62a3d578dcc644917fdb321d67fb0ab1c6 /docs | |
parent | 2fc2d4643ee699b8efc97f23850d5a37c4a85b89 (diff) | |
parent | ba8a71f9ce413fadb80f3fd1c063a9613987eed7 (diff) | |
download | podman-b2d281afcc36a54bc168c3d1c16416e06966c4b3.tar.gz podman-b2d281afcc36a54bc168c3d1c16416e06966c4b3.tar.bz2 podman-b2d281afcc36a54bc168c3d1c16416e06966c4b3.zip |
Merge pull request #8328 from FreedomBen/add-socket-start
[CI:DOCS] Add missing --now in systemctl start command
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tutorials/mac_win_client.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/mac_win_client.md b/docs/tutorials/mac_win_client.md index 63830a5b1..9e0798bbf 100644 --- a/docs/tutorials/mac_win_client.md +++ b/docs/tutorials/mac_win_client.md @@ -29,9 +29,9 @@ $ brew install podman ### Enable the Podman service on the server machine. -Before performing any Podman client commands, you must enable the podman.sock SystemD service on the Linux server. In these examples, we are running Podman as a normal, unprivileged user, also known as a rootless user. By default, the rootless socket listens at `/run/user/${UID}/podman/podman.sock`. You can enable this socket, permanently using the following command: +Before performing any Podman client commands, you must enable the podman.sock SystemD service on the Linux server. In these examples, we are running Podman as a normal, unprivileged user, also known as a rootless user. By default, the rootless socket listens at `/run/user/${UID}/podman/podman.sock`. You can enable and start this socket permanently, using the following commands: ``` -$ systemctl --user enable podman.socket +$ systemctl --user enable --now podman.socket ``` You will need to enable linger for this user in order for the socket to work when the user is not logged in. |