Guest User

Untitled

a guest
May 22nd, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. # Defaults for distcc initscript
  2. # sourced by /etc/init.d/distcc
  3.  
  4. #
  5. # should distcc be started on boot?
  6. #
  7. # STARTDISTCC="true"
  8.  
  9. STARTDISTCC="true"
  10.  
  11. #
  12. # Which networks/hosts should be allowed to connect to the daemon?
  13. # You can list multiple hosts/networks separated by spaces.
  14. # Networks have to be in CIDR notation, f.e. 192.168.1.0/24
  15. # Hosts are represented by a single IP Adress
  16. #
  17. # ALLOWEDNETS="127.0.0.1"
  18.  
  19. ALLOWEDNETS="10.10.10.0/24 127.0.0.1"
  20.  
  21. #
  22. # Which interface should distccd listen on?
  23. # You can specify a single interface, identified by it's IP address, here.
  24. #
  25. # LISTENER="127.0.0.1"
  26.  
  27. LISTENER="127.0.0.1"
  28.  
  29. #
  30. # You can specify a (positive) nice level for the distcc process here
  31. #
  32. # NICE="10"
  33.  
  34. NICE="10"
  35.  
  36. #
  37. # You can specify a maximum number of jobs, the server will accept concurrently
  38. #
  39. # JOBS=""
  40.  
  41. JOBS=""
  42.  
  43. #
  44. # Enable Zeroconf support?
  45. # If enabled, distccd will register via mDNS/DNS-SD.
  46. # It can then automatically be found by zeroconf enabled distcc clients
  47. # without the need of a manually configured host list.
  48. #
  49. # ZEROCONF="true"
  50.  
  51. ZEROCONF="true"
Add Comment
Please, Sign In to add comment