Welcome to mirror list, hosted at ThFree Co, Russian Federation.

duckDNS.sh « ncp-config.d « etc - github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ff2f13ba8dbca59c2c29765ff3ab2cf0ff58bec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/bin/bash

# DuckDNS installation on Raspbian for NextCloudPi
#
#
# Copyleft 2017 by Courtney Hicks
# GPL licensed (see end of file) * Use at your own risk!
#

ACTIVE_=no
DOMAIN_=mycloud.duckdns.org
TOKEN_=your-duckdns-token

INSTALLDIR=duckdns
INSTALLPATH=/usr/local/etc/$INSTALLDIR
CRONFILE=/etc/cron.d/duckdns
DESCRIPTION="Free Dynamic DNS provider (need account from https://duckdns.org)"

install()
{
  apt-get update
  apt-get install -y --no-install-recommends curl # TODO use wget instead
}

configure() 
{
  local DOMAIN="$( sed 's|.duckdns.org||' <<<"$DOMAIN_" )"
  if [[ $ACTIVE_ == "yes" ]]; then
    mkdir -p "$INSTALLPATH"

    # Creates duck.sh script that checks for updates to DNS records
    touch "$INSTALLPATH"/duck.sh
    touch "$INSTALLPATH"/duck.log
    echo -e "echo url=\"https://www.duckdns.org/update?domains=$DOMAIN&token=$TOKEN_&ip=\" | curl -k -o "$INSTALLPATH"/duck.log -K -" > "$INSTALLPATH"/duck.sh

    # Adds file to cron to run script for DNS record updates and change permissions 
    touch $CRONFILE
    echo "*/5 * * * * root $INSTALLPATH/duck.sh >/dev/null 2>&1" > "$CRONFILE"
    chmod 700 "$INSTALLPATH"/duck.sh
    chmod +x "$CRONFILE"

    # First-time execution of duck script
    "$INSTALLPATH"/duck.sh > /dev/null 2>&1

    SUCCESS="$( cat $INSTALLPATH/duck.log )"

    # Checks for successful run of duck.sh
    if [[ $SUCCESS == "OK" ]]; then
      echo "DuckDNS is enabled"
    elif [[ $SUCCESS == "KO" ]]; then
      echo "DuckDNS install failed, is your information correct?"
    fi

    # Removes config files and cron job if ACTIVE_ is set to no
  elif [[ $ACTIVE_ == "no" ]]; then
    rm -f "$CRONFILE"
    rm -f "$INSTALLPATH"/duck.sh
    rm -f "$INSTALLPATH"/duck.log
    rmdir "$INSTALLPATH"
    echo "DuckDNS is now disabled"
  fi
}

# License
#
# This script is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This script is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this script; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place, Suite 330,
# Boston, MA  02111-1307  USA