Don't tweak the SSH config if persistence is enabled
And also ensure we run the initial configuration only once so that the user can override our initial changes. Fixes #22merge-requests/16/head 2020.4
parent
5989ec37de
commit
df945dd71b
@ -1,4 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
if grep -qw persistence /proc/cmdline; then
|
||||
# With persistence enabled, don't modify the configuration, let the
|
||||
# user be in charge...
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Allow PasswordAuthentification in sshd config
|
||||
sed -i -e 's|#\?\(PasswordAuthentication\) no|\1 yes|' /etc/ssh/sshd_config
|
||||
|
Loading…
Reference in New Issue