Source code pulled from OpenBSD for OpenNTPD. The place to contribute to this code is via the OpenBSD CVS tree.
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.

82 lines
3.2 KiB

25 years ago
25 years ago
25 years ago
25 years ago
27 years ago
27 years ago
  1. #!/bin/sh -
  2. #
  3. # $OpenBSD: rc.conf,v 1.47 2000/05/19 16:53:18 mickey Exp $
  4. # set these to "NO" to turn them off. otherwise, they're used as flags
  5. routed_flags=NO # for normal use: "-q"
  6. mrouted_flags=NO # for normal use: "", if activated
  7. # be sure to enable multicast_router below.
  8. rarpd_flags=NO # for normal use: "-a"
  9. bootparamd_flags=NO # for normal use: ""
  10. rbootd_flags=NO # for normal use: ""
  11. sendmail_flags="-q30m" # for normal use: "-bd -q30m"
  12. smtpfwdd_flags=NO # for normal use: "", and no "-bd" above.
  13. named_flags=NO # for normal use: ""
  14. timed_flags=NO # for normal use: ""
  15. photurisd_flags=NO # for normal use: ""
  16. isakmpd_flags=NO # for normal use: ""
  17. mopd_flags=NO # for normal use: "-a"
  18. httpd_flags=NO # for normal use: "" (or "-DSSL" after reading ssl(8))
  19. apmd_flags=NO # for normal use: ""
  20. dhcpd_flags=NO # for normal use: "-q"
  21. ip6defaultif=NO # for normal use: interface
  22. rtadvd_flags=NO # for normal use: list of interfaces
  23. # be sure to set net.inet6.ip6.forwarding=1
  24. route6d_flags=NO # for normal use: ""
  25. # be sure to set net.inet6.ip6.forwarding=1
  26. rtsold_flags=NO # for normal use: interface
  27. # be sure to set net.inet6.ip6.forwarding=0
  28. # be sure to set net.inet6.ip6.accept_rtadv=1
  29. # Set to NO if ftpd is running out of inetd
  30. ftpd_flags=NO # for non-inetd use: "-D"
  31. # Set to NO if identd is running out of inetd
  32. identd_flags=NO # for non-inetd use: "-b -u nobody -elo"
  33. # On some architectures, you must also disable console getty in /etc/ttys
  34. xdm_flags=NO # for normal use: ""
  35. # set the following to "YES" to turn them on
  36. rwhod=NO
  37. nfs_server=NO
  38. lockd=NO
  39. gated=NO
  40. kerberos_server=NO # kerberos server. run 'info kth-krb' for assistance.
  41. kerberos_slave=NO # kerberos slave server.
  42. amd=NO
  43. ipfilter=NO
  44. ipnat=NO # for "YES" ipfilter must also be "YES"
  45. portmap=YES # almost always needed
  46. inetd=YES # almost always needed
  47. lpd=NO # printing daemons
  48. check_quotas=YES # NO may be desireable in some YP environments
  49. sshd=YES # if YES, run sshd
  50. ntpd=YES # run ntpd if it exists
  51. afs=NO # mount and run afs
  52. # Multicast routing configuration
  53. # Please look at /etc/netstart for a detailed description if you change these
  54. multicast_host=NO # Route all multicast packets to a single interface
  55. multicast_router=NO # A multicast routing daemon will be run, e.g. mrouted
  56. # miscellaneous other flags
  57. # only used if the appropriate server is marked YES above
  58. gated_flags=
  59. ypserv_flags= # E.g. -1 for YP v1, -d for DNS etc
  60. yppasswdd_flags= # "-d /etc/yp" if passwd files are in /etc/yp
  61. nfsd_flags="-tun 4" # Crank the 4 for a busy NFS fileserver
  62. amd_dir=/tmp_mnt # AMD's mount directory
  63. amd_master=/etc/amd/master # AMD 'master' map
  64. ipfilter_rules=/etc/ipf.rules # Rules for IP packet filtering
  65. ipnat_rules=/etc/ipnat.rules # Rules for Network Address Translation
  66. ipmon_flags=-Ds # To disable logging, use ipmon_flags=NO
  67. syslogd_flags= # add more flags, ie. "-u -a /chroot/dev/log"
  68. named_user=named # Named should not run as root unless neccesary
  69. named_chroot=/var/named # Where to chroot named if not empty
  70. afs_mount_point=/afs # Mountpoint for AFS
  71. afs_device=/dev/xfs0 # Device used by afsd
  72. afsd_flags=-z # Flags passed to afsd
  73. shlib_dirs= # extra directories for ldconfig
  74. local_rcconf="/etc/rc.conf.local"