20 lines
431 B
Bash
Executable File
20 lines
431 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$EUID" -ne 0 ]
|
|
then echo "Please run as root"
|
|
exit
|
|
fi
|
|
|
|
LOCALIP=$(hostname -I)
|
|
|
|
. .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
|
|
|
|
echo "Starting server. Press CTRL+C to stop."
|
|
echo -e "Local IP address: \e[32m$LOCALIP\e[0m"
|
|
|
|
python3 -m http.server 80 |