diff options
author | Michael Vorburger ⛑️ <mike@vorburger.ch> | 2022-07-02 12:27:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-02 12:27:57 +0200 |
commit | fe559287c93983ba237eb939d00fa0fb93e1613c (patch) | |
tree | 5db2b8c13837a127a9e06f6aa8cf7598f74112e0 | |
parent | b00e65aa9c071428579a55f91a92f3702765ed85 (diff) | |
download | podman-fe559287c93983ba237eb939d00fa0fb93e1613c.tar.gz podman-fe559287c93983ba237eb939d00fa0fb93e1613c.tar.bz2 podman-fe559287c93983ba237eb939d00fa0fb93e1613c.zip |
docs: Remove -s from systemctl enable --now sshd
This flag does not work (e.g. on Fedora 36) and not appear to be required (anymore?).
Signed-off-by: Michael Vorburger ⛑️ <mike@vorburger.ch>
-rw-r--r-- | docs/tutorials/remote_client.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/remote_client.md b/docs/tutorials/remote_client.md index 27b97e6f5..5cd679193 100644 --- a/docs/tutorials/remote_client.md +++ b/docs/tutorials/remote_client.md @@ -54,7 +54,7 @@ host: In order for the Podman 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 |