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

91 lines
3.5 KiB

25 years ago
25 years ago
25 years ago
21 years ago
25 years ago
25 years ago
25 years ago
25 years ago
22 years ago
24 years ago
  1. #!/bin/sh -
  2. #
  3. # $OpenBSD: rc.conf,v 1.105 2005/03/22 22:24:38 henning 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. ospfd_flags=NO # for normal use: ""
  9. bgpd_flags=NO # for normal use: ""
  10. rarpd_flags=NO # for normal use: "-a"
  11. bootparamd_flags=NO # for normal use: ""
  12. rbootd_flags=NO # for normal use: ""
  13. sshd_flags="" # for normal use: ""
  14. named_flags=NO # for normal use: ""
  15. rdate_flags=NO # for normal use: [RFC868-host] or [-n RFC2030-host]
  16. timed_flags=NO # for normal use: ""
  17. ntpd_flags=NO # for normal use: ""
  18. isakmpd_flags=NO # for normal use: ""
  19. mopd_flags=NO # for normal use: "-a"
  20. apmd_flags=NO # for normal use: ""
  21. dhcpd_flags=NO # for normal use: ""
  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. lpd_flags=NO # for normal use: "" (or "-l" for debugging)
  30. sensorsd_flags=NO # for normal use: ""
  31. hotplugd_flags=NO # for normal use: ""
  32. # use -u to disable chroot, see httpd(8)
  33. httpd_flags=NO # for normal use: "" (or "-DSSL" after reading ssl(8))
  34. # For normal use: "-L sm-mta -bd -q30m", and note there is a cron job
  35. sendmail_flags="-L sm-mta -C/etc/mail/localhost.cf -bd -q30m"
  36. spamd_flags=NO # for normal use: "" and see spamd-setup(8)
  37. spamd_grey=NO # use spamd greylisting if YES
  38. spamlogd_flags="" # use eg. "-i interface" and see spamlogd(8)
  39. # Set to NO if ftpd is running out of inetd
  40. ftpd_flags=NO # for non-inetd use: "-D"
  41. # Set to NO if identd is running out of inetd
  42. identd_flags=NO # for non-inetd use: "-b -elo"
  43. # On some architectures, you must also disable console getty in /etc/ttys
  44. xdm_flags=NO # for normal use: ""
  45. # For enabling console mouse support (i386 and alpha only)
  46. wsmoused_flags=NO # for ps/2 or usb mice: "", serial: "-p /dev/cua00"
  47. # set the following to "YES" to turn them on
  48. rwhod=NO
  49. nfs_server=NO # see sysctl.conf for nfs client configuration
  50. lockd=NO
  51. amd=NO
  52. pf=NO # Packet filter / NAT
  53. portmap=NO # Note: inetd(8) rpc services need portmap too
  54. inetd=YES # almost always needed
  55. check_quotas=YES # NO may be desirable in some YP environments
  56. krb5_master_kdc=NO # KerberosV master KDC. Run 'info heimdal' for help.
  57. krb5_slave_kdc=NO # KerberosV slave KDC.
  58. afs=NO # mount and run afs
  59. # Multicast routing configuration
  60. # Please look at netstart(8) for a detailed description if you change these
  61. multicast_host=NO # Route all multicast packets to a single interface
  62. multicast_router=NO # A multicast routing daemon will be run, e.g. mrouted
  63. # miscellaneous other flags
  64. # only used if the appropriate server is marked YES above
  65. savecore_flags= # "-z" to compress
  66. ypserv_flags= # E.g. -1 for YP v1, -d for DNS etc
  67. yppasswdd_flags=NO # "-d /etc/yp" if passwd files are in /etc/yp
  68. nfsd_flags="-tun 4" # Crank the 4 for a busy NFS fileserver
  69. amd_dir=/tmp_mnt # AMD's mount directory
  70. amd_master=/etc/amd/master # AMD 'master' map
  71. syslogd_flags= # add more flags, ie. "-u -a /chroot/dev/log"
  72. pf_rules=/etc/pf.conf # Packet filter rules file
  73. pflogd_flags= # add more flags, ie. "-s 256"
  74. afsd_flags= # Flags passed to afsd
  75. shlib_dirs= # extra directories for ldconfig, separated
  76. # by space
  77. local_rcconf="/etc/rc.conf.local"
  78. [ -f ${local_rcconf} ] && . ${local_rcconf} # Do not edit this line