Advertisement
dsonbill

DMPServer Linux Common Config

Sep 9th, 2014
874
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.78 KB | None | 0 0
  1. # Repo Version ('development' or 'release')
  2. VERSION="release"
  3.  
  4. # How long the server should wait before shutting down or restarting when doing so normally
  5. shutdown_count=60
  6.  
  7. # Repo URL (DO NOT EDIT)
  8. DMPURL="http://godarklight.info.tm/dmp/updater/versions/"
  9.  
  10. ## DMP Install Location (DO NOT EDIT)
  11. DMPBIN="/usr/share/dmpserver"
  12.  
  13. # DMP Base Execution Environment (CAREFUL WHEN EDITING: Probably best left alone.)
  14. DMPDIR="/srv/dmpserver"
  15.  
  16. ## Daemon and Pipe Config
  17. # User to run DMPServer as. (DO NOT EDIT)
  18. user="dmpserver"
  19.  
  20. ## Daemon Shell (DO NOT EDIT)
  21. shell="/bin/bash"
  22.  
  23. ## DMP Repo Variables (DO NOT EDIT)
  24. REPO="$DMPURL/$VERSION"
  25. REPOindex="$REPO/server.txt"
  26. REPOobj="$REPO/objects"
  27.  
  28. # Daemon Variables (DO NOT EDIT)
  29. SERVICENAME="dmpserver"
  30. LOCKFILE="/var/run/$SERVICENAME"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement