Guest User

Untitled

a guest
Nov 18th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. case $1 in
  4. start)
  5. start-stop-daemon --exec /usr/local/bin/dhtnode -n dhtnode --start -- -d -p 4222 -b bootstrap.ring.cx -v -l /var/log/dhtnode
  6. ;;
  7. stop)
  8. start-stop-daemon -n dhtnode --stop
  9. ;;
  10. esac
Add Comment
Please, Sign In to add comment