Source code pulled from OpenBSD for OpenNTPD. The place to contribute to this code is via the OpenBSD CVS tree.

91 lines
3.6 KiB

25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
25 years ago
24 years ago
  1. #!/bin/sh -
  2. #
  3. # $OpenBSD: rc.conf,v 1.68 2001/08/22 16:13:14 deraadt 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. altqd_flags=NO # for normal use: ""
  7. mrouted_flags=NO # for normal use: "", if activated
  8. # be sure to enable multicast_router below.
  9. rarpd_flags=NO # for normal use: "-a"
  10. bootparamd_flags=NO # for normal use: ""
  11. rbootd_flags=NO # for normal use: ""
  12. sshd_flags="" # for normal use: ""
  13. sendmail_flags="-q30m" # for normal use: "-bd -q30m"
  14. smtpfwdd_flags=NO # for normal use: "", and no "-bd" above.
  15. named_flags=NO # for normal use: ""
  16. rdate_flags=NO # for normal use: name of RFC868 timeserver
  17. timed_flags=NO # for normal use: ""
  18. ntpdate_flags=NO # for normal use: NTP server; run before ntpd starts
  19. photurisd_flags=NO # for normal use: ""
  20. isakmpd_flags=NO # for normal use: ""
  21. mopd_flags=NO # for normal use: "-a"
  22. httpd_flags=NO # for normal use: "" (or "-DSSL" after reading ssl(8))
  23. apmd_flags=NO # for normal use: ""
  24. dhcpd_flags=NO # for normal use: "-q"
  25. rtadvd_flags=NO # for normal use: list of interfaces
  26. # be sure to set net.inet6.ip6.forwarding=1
  27. route6d_flags=NO # for normal use: ""
  28. # be sure to set net.inet6.ip6.forwarding=1
  29. rtsold_flags=NO # for normal use: interface
  30. # be sure to set net.inet6.ip6.forwarding=0
  31. # be sure to set net.inet6.ip6.accept_rtadv=1
  32. lpd_flags=NO # for normal use: "" (or "-l" for debugging)
  33. # Set to NO if ftpd is running out of inetd
  34. ftpd_flags=NO # for non-inetd use: "-D"
  35. # Set to NO if identd is running out of inetd
  36. identd_flags=NO # for non-inetd use: "-b -u nobody -elo"
  37. # On some architectures, you must also disable console getty in /etc/ttys
  38. xdm_flags=NO # for normal use: ""
  39. # For enabling console mouse support (i386 architecture only)
  40. wsmoused_flags=NO # for ps/2 or usb mice: "", serial: "-p /dev/cua00"
  41. # set the following to "YES" to turn them on
  42. rwhod=NO
  43. nfs_server=NO # see sysctl.conf for nfs client configuration
  44. lockd=NO
  45. gated=NO
  46. amd=NO
  47. pf=NO # Packet filter / NAT
  48. portmap=YES # almost always needed
  49. inetd=YES # almost always needed
  50. check_quotas=YES # NO may be desirable in some YP environments
  51. ntpd=YES # run ntpd if it exists
  52. krb4_server_kdc=NO # kerberos server. run 'info kth-krb' for assistance.
  53. krb4_slave_kdc=NO # kerberos slave server.
  54. krb5_master_kdc=NO # KerberosV master KDC. Run 'info heimdal' for help.
  55. krb5_slave_kdc=NO # KerberosV slave KDC.
  56. afs=NO # mount and run afs
  57. # Multicast routing configuration
  58. # Please look at /etc/netstart for a detailed description if you change these
  59. multicast_host=NO # Route all multicast packets to a single interface
  60. multicast_router=NO # A multicast routing daemon will be run, e.g. mrouted
  61. # miscellaneous other flags
  62. # only used if the appropriate server is marked YES above
  63. gated_flags=
  64. ypserv_flags= # E.g. -1 for YP v1, -d for DNS etc
  65. yppasswdd_flags= # "-d /etc/yp" if passwd files are in /etc/yp
  66. nfsd_flags="-tun 4" # Crank the 4 for a busy NFS fileserver
  67. amd_dir=/tmp_mnt # AMD's mount directory
  68. amd_master=/etc/amd/master # AMD 'master' map
  69. syslogd_flags= # add more flags, ie. "-u -a /chroot/dev/log"
  70. named_user=named # Named should not run as root unless necessary
  71. named_chroot=/var/named # Where to chroot named if not empty
  72. pf_rules=/etc/pf.conf # Packet filter rules file
  73. nat_rules=/etc/nat.conf # NAT rules file
  74. pflogd_flags= # add more flags, ie. "-s 256"
  75. afs_mount_point=/afs # Mountpoint for AFS
  76. afs_device=/dev/xfs0 # Device used by afsd
  77. afsd_flags=-z # Flags passed to afsd
  78. shlib_dirs= # extra directories for ldconfig
  79. local_rcconf="/etc/rc.conf.local"
  80. [ -f ${local_rcconf} ] && . ${local_rcconf} # Do not edit this line