Added debug option (not to lock pi user)
This commit is contained in:
parent
55924e9434
commit
e022c6d9ce
|
@ -243,7 +243,11 @@ step7(){
|
|||
sudo cp ./utility/sats-boot.service /mnt/lib/systemd/system/sats-boot.service;
|
||||
|
||||
echo " (.) Create sats-boot script";
|
||||
if [ $LOCK_PI -eq 1 ]; then
|
||||
sudo cp ./utility/sats-boot /mnt/home/pi/sats-boot;
|
||||
else
|
||||
sudo cp ./utility/sats-boot_withoutlock /mnt/home/pi/sats-boot;
|
||||
fi;
|
||||
sudo chown 1000:1000 /mnt/home/pi/sats-boot;
|
||||
sudo chmod 770 /mnt/home/pi/sats-boot;
|
||||
|
||||
|
|
|
@ -7,3 +7,6 @@ export WIFI_PASS=" manon adrien ";
|
|||
# SERVER SETTINGS
|
||||
export SERVER_HOSTNAME="xdrm.io";
|
||||
export SERVER_USERNAME="satsd";
|
||||
|
||||
# DEBUG SETTINGS
|
||||
export LOCK_PI=0;
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
# [1] Set random passwords for 'sats'
|
||||
RANDOM_PASS=$(tr -cd A-Za-z0-9_ < /dev/urandom | head -c 256);
|
||||
echo "$RANDOM_PASS\n$RANDOM_PASS\n" | sudo passwd sats;
|
||||
|
||||
# [2] Set random passwords for 'pi' itself
|
||||
#RANDOM_PASS=$(tr -cd A-Za-z0-9_ < /dev/urandom | head -c 256);
|
||||
#echo "$RANDOM_PASS\n$RANDOM_PASS\n" | sudo passwd pi;
|
||||
|
||||
# [3] Start ssh service
|
||||
sudo systemctl start ssh;
|
||||
|
||||
# [4] Try to install necessary packages
|
||||
sudo apt-get install git;
|
Loading…
Reference in New Issue