Created
February 3, 2014 16:03
-
-
Save phoenixg/8786685 to your computer and use it in GitHub Desktop.
树莓派设置动态DNS(使用noip服务)Raspberry Pi Beginner : Dynamic DNS
This file contains hidden or 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 | |
# /etc/init.d/noip | |
### BEGIN INIT INFO | |
# Provides: noip | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Simple script to start a program at boot | |
# Description: A simple script from www.stuffaboutcode.com which will start / stop a program a boot / shutdown. | |
### END INIT INFO | |
# If you want a command to always run, put it here | |
# Carry out specific functions when asked to by the system | |
case "$1" in | |
start) | |
echo "Starting noip" | |
# run application you want to start | |
/usr/local/bin/noip2 | |
;; | |
stop) | |
echo "Stopping noip" | |
# kill application you want to stop | |
killall noip2 | |
;; | |
*) | |
echo "Usage: /etc/init.d/noip {start|stop}" | |
exit 1 | |
;; | |
esac | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment