Allow enabling ssh server from config

Add ENABLE_SSH option
This commit is contained in:
Sam Tygier
2019-01-01 22:00:28 -08:00
committed by Peter Johnson
parent acb0612ea4
commit c80e5e9100
4 changed files with 11 additions and 1 deletions
+5 -1
View File
@@ -45,7 +45,11 @@ cat files/bash.bashrc >> "${ROOTFS_DIR}/etc/bash.bashrc"
cat files/bash.logout >> "${ROOTFS_DIR}/etc/bash.bash_logout"
on_chroot << EOF
systemctl enable ssh
if [ "${ENABLE_SSH}" == "1" ]; then
systemctl enable ssh
else
systemctl disable ssh
fi
systemctl enable regenerate_ssh_host_keys
EOF