clc-debian/preseedserver.sh

20 lines
431 B
Bash
Raw Normal View History

2021-07-12 20:37:34 -04:00
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
LOCALIP=$(hostname -I)
2021-07-13 08:35:52 -04:00
. .passwd.cfg
#copy the pre-preseed file and update the passwords from the .passwd.cfg file
cp input.cfg preseed.cfg
sed -i "s/@ROOTHASH/$roothash/g" preseed.cfg
sed -i "s/@USERHASH/$userhash/g" preseed.cfg
2021-07-12 20:37:34 -04:00
echo "Starting server. Press CTRL+C to stop."
echo -e "Local IP address: \e[32m$LOCALIP\e[0m"
python3 -m http.server 80