diff options
author | 2018-09-01 23:24:57 +0200 | |
---|---|---|
committer | 2018-09-02 06:23:42 -0400 | |
commit | 07bcf259bce767f0cad640468a9efba700e246ba (patch) | |
tree | 0bf7fedaf96dbfbd56f6d121ff73568cb2f781d1 /net-dns/ddclient/files | |
parent | media-video/bino: 1.6.7 version bump, improve everywhere (diff) | |
download | gentoo-07bcf259bce767f0cad640468a9efba700e246ba.tar.gz gentoo-07bcf259bce767f0cad640468a9efba700e246ba.tar.bz2 gentoo-07bcf259bce767f0cad640468a9efba700e246ba.zip |
net-dns/ddclient: bump to version 3.9.0
Closes: https://bugs.gentoo.org/665070
Package-Manager: Portage-2.3.48, Repoman-2.3.10
Closes: https://github.com/gentoo/gentoo/pull/9762
Diffstat (limited to 'net-dns/ddclient/files')
-rw-r--r-- | net-dns/ddclient/files/ddclient-3.9.0-use_iproute2.patch | 29 | ||||
-rw-r--r-- | net-dns/ddclient/files/ddclient.initd-r5 | 21 | ||||
-rw-r--r-- | net-dns/ddclient/files/ddclient.service-r1 | 13 |
3 files changed, 63 insertions, 0 deletions
diff --git a/net-dns/ddclient/files/ddclient-3.9.0-use_iproute2.patch b/net-dns/ddclient/files/ddclient-3.9.0-use_iproute2.patch new file mode 100644 index 000000000000..b57f78ba14e1 --- /dev/null +++ b/net-dns/ddclient/files/ddclient-3.9.0-use_iproute2.patch @@ -0,0 +1,29 @@ +--- a/ddclient 2018-08-09 17:58:16.000000000 +0200 ++++ b/ddclient 2018-09-01 22:35:43.000000000 +0200 +@@ -710,7 +710,7 @@ + [ "ip", "=s", "-ip address : set the IP address to 'address'" ], + "", + [ "if", "=s", "-if interface : obtain IP address from 'interface'" ], +- [ "if-skip", "=s", "-if-skip pattern : skip any IP addresses before 'pattern' in the output of ifconfig {if}" ], ++ [ "if-skip", "=s", "-if-skip pattern : skip any IP addresses before 'pattern' in the output of ip addr show {if}" ], + "", + [ "web", "=s", "-web provider|url : obtain IP address from provider's IP checking page" ], + [ "web-skip", "=s", "-web-skip pattern : skip any IP addresses before 'pattern' on the web provider|url" ], +@@ -1448,7 +1448,7 @@ + + { + local $opt{'use'} = 'if'; +- foreach my $if (grep {/^[a-zA-Z]/} `ifconfig -a`) { ++ foreach my $if (grep {/^[a-zA-Z]/} `ip addr show`) { + $if =~ s/:?\s.*//is; + local $opt{'if'} = $if; + printf "use=if, if=%s address is %s\n", opt('if'), define(get_ip('if'), 'NOT FOUND'); +@@ -2165,7 +2165,7 @@ + + } elsif ($use eq 'if') { + $skip = opt('if-skip', $h) || ''; +- $reply = `ifconfig $arg 2> /dev/null`; ++ $reply = `ip addr show $arg 2> /dev/null`; + $reply = `ip addr list dev $arg 2> /dev/null` if $?; + $reply = '' if $?; + diff --git a/net-dns/ddclient/files/ddclient.initd-r5 b/net-dns/ddclient/files/ddclient.initd-r5 new file mode 100644 index 000000000000..a2284a27c1ff --- /dev/null +++ b/net-dns/ddclient/files/ddclient.initd-r5 @@ -0,0 +1,21 @@ +#!/sbin/openrc-run +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +name="DDclient" +pidfile="/run/ddclient/${RC_SVCNAME}.pid" + +command="/usr/bin/ddclient" +command_args="-pid ${pidfile}" +command_group="ddclient" +command_user="ddclient" + +depend() { + use dns logger +} + +start_pre() { + checkpath -f -m 0600 -o ${command_user}:${command_group} /etc/ddclient/ddclient.conf + checkpath -d -m 0700 -o ${command_user}:${command_group} /run/ddclient + checkpath -d -m 0700 -o ${command_user}:${command_group} /var/cache/ddclient +} diff --git a/net-dns/ddclient/files/ddclient.service-r1 b/net-dns/ddclient/files/ddclient.service-r1 new file mode 100644 index 000000000000..77cc3f7aa5e1 --- /dev/null +++ b/net-dns/ddclient/files/ddclient.service-r1 @@ -0,0 +1,13 @@ +[Unit] +After=network-online.target +ConditionPathExists=/etc/ddclient/ddclient.conf +Description=DDclient + +[Service] +ExecStart=/usr/sbin/ddclient --foreground +Group=ddclient +Type=simple +User=ddclient + +[Install] +WantedBy=multi-user.target |