This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This is a public script made by RajDave69 on GitHub | |
This script implements DDNS (Dynamic DNS) for users using CloudFlare. | |
It's super easy to configure and deploy too! Just run it as a daemon. | |
""" | |
from cloudflare_ddns import CloudFlare | |
import time | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Put FTP server details here | |
SERVER="" # server ip/fdqn | |
USERNAME="" | |
PASSWORD="" | |
# local directory containing source backup files | |
SOURCEFILES="/var/lib/pterodactyl/volumes/" | |
# temporary tar.gz file path |