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.

87 lines
3.4 KiB

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