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.

94 lines
3.7 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
23 years ago
  1. #!/bin/sh -
  2. #
  3. # $OpenBSD: rc.conf,v 1.70 2001/10/12 22:40:58 jakob 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. smtpfwdd_flags=NO # for normal use: ""; be sure to configure smtpd(8)
  14. # and sendmail(8) to use MSA only
  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. # For normal use: "-L sm-mta -bd -q30m"
  34. sendmail_flags="-L sm-mta -C/etc/mail/localhost.cf -bd -q30m"
  35. # Set to NO if ftpd is running out of inetd
  36. ftpd_flags=NO # for non-inetd use: "-D"
  37. # Set to NO if identd is running out of inetd
  38. identd_flags=NO # for non-inetd use: "-b -u nobody -elo"
  39. # On some architectures, you must also disable console getty in /etc/ttys
  40. xdm_flags=NO # for normal use: ""
  41. # For enabling console mouse support (i386 architecture only)
  42. wsmoused_flags=NO # for ps/2 or usb mice: "", serial: "-p /dev/cua00"
  43. # set the following to "YES" to turn them on
  44. rwhod=NO
  45. nfs_server=NO # see sysctl.conf for nfs client configuration
  46. lockd=NO
  47. gated=NO
  48. amd=NO
  49. pf=NO # Packet filter / NAT
  50. portmap=YES # almost always needed
  51. inetd=YES # almost always needed
  52. check_quotas=YES # NO may be desirable in some YP environments
  53. ntpd=YES # run ntpd if it exists
  54. krb4_server_kdc=NO # kerberos server. run 'info kth-krb' for assistance.
  55. krb4_slave_kdc=NO # kerberos slave server.
  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 /etc/netstart 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. gated_flags=
  66. ypserv_flags= # E.g. -1 for YP v1, -d for DNS etc
  67. yppasswdd_flags= # "-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. named_user=named # Named should not run as root unless necessary
  73. named_chroot=/var/named # Where to chroot named if not empty
  74. pf_rules=/etc/pf.conf # Packet filter rules file
  75. nat_rules=/etc/nat.conf # NAT rules file
  76. pflogd_flags= # add more flags, ie. "-s 256"
  77. afs_mount_point=/afs # Mountpoint for AFS
  78. afs_device=/dev/xfs0 # Device used by afsd
  79. afsd_flags=-z # Flags passed to afsd
  80. shlib_dirs= # extra directories for ldconfig
  81. local_rcconf="/etc/rc.conf.local"
  82. [ -f ${local_rcconf} ] && . ${local_rcconf} # Do not edit this line