Created
January 22, 2013 20:18
-
-
Save daxxog/4598024 to your computer and use it in GitHub Desktop.
This file contains 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
#/etc/init/no-ip.conf | |
#upstart service for noip2 | |
description "No-IP Linux Dynamic Update Client (DUC)" | |
author "No-IP <[email protected]>" | |
# When to start the service | |
start on runlevel [2345] | |
# When to stop the service | |
stop on runlevel [016] | |
# Automatically restart process if crashed | |
respawn | |
# Essentially lets upstart know the process will detach itself to the background | |
expect fork | |
# Start the process | |
exec noip2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment