19 lines
693 B
Bash
19 lines
693 B
Bash
#!/bin/bash
|
|
#
|
|
# Install script for Digital Ocean ddns script. You can also do this manually.
|
|
# Check https://gitlab.pm/rune/ddns
|
|
#
|
|
# GPLv3 Rune Olsen (https://blog.rune.pm) 2023
|
|
#
|
|
|
|
wget https://gitlab.pm/rune/ddns/raw/branch/main/ddns.py && wget https://gitlab.pm/rune/ddns/raw/branch/main/requirements.txt
|
|
sleep 5
|
|
echo "ddns downloaded. Moving to /usr/local/bin and setting execute (run) rights on app."
|
|
echo "Your computer will ask for password since the rest of the install is done with sudo."
|
|
echo "Press any key to continue. Press ctrl+c to cancel"
|
|
read -n 1
|
|
sudo mv ddns.py /usr/local/bin/ddns
|
|
sudo chmod +x /usr/local/bin/ddns
|
|
python3 pip3 -r requirements.txt
|
|
rm requirements.txt
|
|
exit 0 |