diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-11-24 20:31:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-24 20:31:30 +0100 |
commit | d752f7e4643d11764f88015e00aadb87825af844 (patch) | |
tree | 782bd42be7ed2d2d19f8052374f69dd025d5f897 | |
parent | 850bdd236ad3047695a479e1fa174267eb6f1825 (diff) | |
parent | f8f2ce07d64e4c0f1e4b83be41b8b97a3454606f (diff) | |
download | podman-d752f7e4643d11764f88015e00aadb87825af844.tar.gz podman-d752f7e4643d11764f88015e00aadb87825af844.tar.bz2 podman-d752f7e4643d11764f88015e00aadb87825af844.zip |
Merge pull request #8468 from lucendio/patch-1
[CI:DOCS] Tutorials:mac-win-client - Fix command ensuring sshd is enabled
-rw-r--r-- | docs/tutorials/mac_win_client.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/mac_win_client.md b/docs/tutorials/mac_win_client.md index af2668e10..375f73102 100644 --- a/docs/tutorials/mac_win_client.md +++ b/docs/tutorials/mac_win_client.md @@ -55,7 +55,7 @@ host: In order for the client to communicate with the server you need to enable and start the SSH daemon on your Linux machine, if it is not currently enabled. ``` -sudo systemctl enable --now -s sshd +sudo systemctl enable --now sshd ``` #### Setting up SSH |