Allow enabling ssh server from config

Add ENABLE_SSH option
This commit is contained in:
Sam Tygier
2018-12-18 18:32:06 +00:00
committed by XECDesign
parent f4dc2dcce6
commit cc6605695d
3 changed files with 10 additions and 1 deletions

View File

@@ -15,7 +15,11 @@ on_chroot << EOF
systemctl disable hwclock.sh
systemctl disable nfs-common
systemctl disable rpcbind
systemctl disable ssh
if [ "${ENABLE_SSH}" == "1" ]; then
systemctl enable ssh
else
systemctl disable ssh
fi
systemctl enable regenerate_ssh_host_keys
EOF