Guest User

Untitled

a guest
Apr 30th, 2018
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. # Copyright 1999-2007 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. # $Header: $
  4.  
  5. # /etc/conf.d/sabnzbd
  6. # Config file for sabnzbd init script
  7.  
  8. # Which user to run sabnzbd as, you should change this.
  9. SABNZBD_USER="sabnzbd"
  10. SABNZBD_GROUP="sabnzbd"
  11.  
  12. # This overrides the contents of /etc/sabnzbd/sabnzbd.conf, needed for wget shutdown to work in init (short of writing some crazy regex for the config)
  13. SABNZBD_HOSTNAME="0.0.0.0"
  14. SABNZBD_PORT="8080"
  15.  
  16. # Location of config file.
  17. # Make sure the user specified above can read this file. (if you want to change options from the webUI, give it write)
  18. SABNZBD_CONFIG="/etc/sabnzbd/sabnzbd.conf"
  19.  
  20. # API key to run the shutdown call
  21. SABNZBD_APIKEY=$(/usr/bin/SABnzbd api_key)
  22.  
  23. SABNZBD_HTTPUSER=$(/usr/bin/SABnzbd username)
  24. SABNZBD_PASSWORD=$(/usr/bin/SABnzbd password)
Add Comment
Please, Sign In to add comment