diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2015-11-18 17:48:46 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2015-11-18 17:48:46 +0000 |
commit | 6b342043d3c9e0b75d72e27475388b5bd3f31373 (patch) | |
tree | 10c7929972128d0af9dffbf27a00f3b7922c0b96 | |
parent | 5eb97ceaa6079ea9694e02cea1482d2a3e1da6b1 (diff) |
Now that the transition is over, have the installer set 'prohibit-password'
in sshd_config instead of 'without-password'. "it is time" deraadt@
-rw-r--r-- | distrib/miniroot/install.sub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index f0def789aaa..dc92785ce02 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.858 2015/09/27 19:00:32 halex Exp $ +# $OpenBSD: install.sub,v 1.859 2015/11/18 17:48:45 sthen Exp $ # # Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback # Copyright (c) 2015, Robert Peichaer <rpe@openbsd.org> @@ -1645,7 +1645,7 @@ ask_root_sshd() { n|no) sshd_enableroot=no ;; w|p|without-password|prohibit-password) - sshd_enableroot=without-password + sshd_enableroot=prohibit-password ;; *) echo "'$resp' is not a valid choice." $AUTO && exit 1 |