Small fixes

This commit is contained in:
rune 2023-03-22 12:19:45 +01:00
parent 3a3c908f0a
commit 5f675974cb
2 changed files with 1 additions and 21 deletions

View File

@ -4,13 +4,7 @@ _DDNS_ is a dynamic DNS helper for Digital Ocean users to utilize their DO accou
## Installation
Install with
```
wget -O - https://gitlab.pm/rune/test/raw/branch/main/setup.sh | bash
```
#### Manual install
Download the latest relase from https://gitlab.pm/rune/ddns/releases. Unzip and move to a folder in you path (ease of use). You can alos rename the file ```ddns.py``` to just ```ddns``` and make the file executable with ```chmod +x ddns```
Download the latest relase from https://gitlab.pm/rune/ddns/releases. Unzip and move to a folder in you path (ease of use). You can alos rename the file ```ddns.py``` to just ```ddns``` and make the file executable with ```chmod +x ddns```. To install required python modules run ```pip3 -r requirements.txt```
## Usage

View File

@ -1,14 +0,0 @@
#!/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" && sleep 2 && read -n 1 && sleep 5
sudo mv ddns.py /usr/local/bin/ddns && sudo chmod +x /usr/local/bin/ddns && sudo pip3 -r requirements.txt && rm requirements.txt && exit 0