aboutsummaryrefslogtreecommitdiff
path: root/src/property/sshd.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-08-16 15:42:27 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-08-16 15:42:27 -0700
commit230d4380ed55b76426d2c1e3a2762b12c37833ea (patch)
tree9dbb863bbc3403e23770a4f0d2394d787b84c9da /src/property/sshd.lisp
parentbe9e0eb50a94a0b18d5039a99d06670d3b5039a0 (diff)
downloadconsfigurator-230d4380ed55b76426d2c1e3a2762b12c37833ea.tar.gz
SSHD:NO-PASSWORDS: update configuration value for PermitRootLogin
"without-password" is a deprecated alias for "prohibit-password". Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property/sshd.lisp')
-rw-r--r--src/property/sshd.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/property/sshd.lisp b/src/property/sshd.lisp
index c1a969b..e4c1061 100644
--- a/src/property/sshd.lisp
+++ b/src/property/sshd.lisp
@@ -45,7 +45,7 @@ refuses to proceed if root has no authorized_keys."
(unless (and (remote-exists-p ".ssh/authorized_keys")
(plusp (length (readfile ".ssh/authorized_keys"))))
(failed-change "root has no authorized_keys"))
- (configured "PermitRootLogin" "without-password"
+ (configured "PermitRootLogin" "prohibit-password"
"PasswordAuthentication" "no")))