Skip to content

Commit

Permalink
Merge pull request #4 from Fourdee/Testing
Browse files Browse the repository at this point in the history
v53
  • Loading branch information
Fourdee committed May 9, 2015
2 parents 9d8a562 + c1d9036 commit 4ca3009
Show file tree
Hide file tree
Showing 11 changed files with 353 additions and 258 deletions.
2 changes: 1 addition & 1 deletion dietpi/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
52
53
39 changes: 39 additions & 0 deletions dietpi/conf/noip_init
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#! /bin/sh
# /etc/init.d/noip2.sh

# Supplied by no-ip.com
# Modified for Debian GNU/Linux by Eivind L. Rygge <[email protected]>
# corrected 1-17-2004 by Alex Docauer <[email protected]>

# . /etc/rc.d/init.d/functions # uncomment/modify for your killproc

DAEMON=/usr/local/bin/noip2
NAME=noip2

test -x $DAEMON || exit 0

case "$1" in
start)
echo -n "Starting dynamic address update: "
start-stop-daemon --start --exec $DAEMON
echo "noip2."
;;
stop)
echo -n "Shutting down dynamic address update:"
start-stop-daemon --stop --oknodo --retry 30 --exec $DAEMON
echo "noip2."
;;

restart)
echo -n "Restarting dynamic address update: "
start-stop-daemon --stop --oknodo --retry 30 --exec $DAEMON
start-stop-daemon --start --exec $DAEMON
echo "noip2."
;;

*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit 0

2 changes: 1 addition & 1 deletion dietpi/conf/vpnserver.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Software Configuration File
# Software Configuration File
# ---------------------------
#
# You may edit this file when the VPN Server / Client / Bridge program is not running.
Expand Down
File renamed without changes.
Loading

0 comments on commit 4ca3009

Please sign in to comment.