You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.6 KiB

  1. #!/bin/sh
  2. ##############################################################################
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License version 2 as
  6. # published by the Free Software Foundation.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. #
  13. # Copyright (C) 2016 Eric Luehrsen
  14. #
  15. ##############################################################################
  16. UNBOUND_LIBDIR=/usr/lib/unbound
  17. UNBOUND_VARDIR=/var/lib/unbound
  18. UNBOUND_PIDFILE=/var/run/unbound.pid
  19. UNBOUND_SRV_CONF=$UNBOUND_VARDIR/unbound_srv.conf
  20. UNBOUND_EXT_CONF=$UNBOUND_VARDIR/unbound_ext.conf
  21. UNBOUND_DHCP_CONF=$UNBOUND_VARDIR/unbound_dhcp.conf
  22. UNBOUND_CONFFILE=$UNBOUND_VARDIR/unbound.conf
  23. UNBOUND_KEYFILE=$UNBOUND_VARDIR/root.key
  24. UNBOUND_HINTFILE=$UNBOUND_VARDIR/root.hints
  25. UNBOUND_TIMEFILE=$UNBOUND_VARDIR/hotplug.time
  26. UNBOUND_CTLKEY_FILE=$UNBOUND_VARDIR/unbound_control.key
  27. UNBOUND_CTLPEM_FILE=$UNBOUND_VARDIR/unbound_control.pem
  28. UNBOUND_SRVKEY_FILE=$UNBOUND_VARDIR/unbound_server.key
  29. UNBOUND_SRVPEM_FILE=$UNBOUND_VARDIR/unbound_server.pem
  30. ##############################################################################
  31. UNBOUND_ANCHOR=/usr/sbin/unbound-anchor
  32. UNBOUND_CONTROL=/usr/sbin/unbound-control
  33. UNBOUND_CONTROL_CFG="$UNBOUND_CONTROL -c $UNBOUND_CONFFILE"
  34. ##############################################################################