Allow enabling ssh server from config

Add ENABLE_SSH option
pull/236/head
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

@ -85,6 +85,10 @@ The following environment variables are supported:
If these are set, they are use to configure `wpa_supplicant.conf`, so that the raspberry pi can automatically connect to a wifi network on first boot.
* `ENABLE_SSH` (Default: `0`)
Setting to `1` will enable ssh server for remote log in. Note that if you are using a common password such as the defaults there is a high risk of attackers taking over you RaspberryPi.
A simple example for building Raspbian:
```bash

View File

@ -146,6 +146,7 @@ export FIRST_USER_PASS=${FIRST_USER_PASS:-raspberry}
export WPA_ESSID
export WPA_PASSWORD
export WPA_COUNTRY
export ENABLE_SSH="${ENABLE_SSH:-0}"
export BASE_DIR

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