Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion net/ddns-scripts/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=ddns-scripts
PKG_VERSION:=2.8.3
PKG_RELEASE:=3
PKG_RELEASE:=4

PKG_LICENSE:=GPL-2.0

Expand Down
4 changes: 2 additions & 2 deletions net/ddns-scripts/files/usr/lib/ddns/dynamic_dns_updater.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Usage:

Parameters:
-S SECTION SECTION to start
use either -N NETWORK or -S SECTION
SECTION is the UCI section name/id to start

-h show this help and exit
-V show version and exit
Expand Down Expand Up @@ -57,7 +57,7 @@ while getopts ":hv:dn:S:V" OPT; do
done
shift $((OPTIND - 1 )) # OPTIND is 1 based

[ -z "$SECTION_ID" ] && usage_err "option '-N' is missing"
[ -z "$SECTION_ID" ] && usage_err "option '-S' is missing"

# set file names
PIDFILE="$ddns_rundir/$SECTION_ID.pid" # Process ID file
Expand Down
Loading