source: hybrid/branches/releng-9.0/nanobsd/files/etc/rc.conf@ 10175

Last change on this file since 10175 was 10136, checked in by richardvm, 13 years ago

domme toevoeging van proxy files

  • Property svn:eol-style set to LF
File size: 1.3 KB
Line 
1## Building options
2dumpdev="NO" # No kernel dumps as we don't have a place to
3 # store them
4gateway_enable="NO" # Do NOT act like a gateway
5ipv6_enable="NO" # No IPv6 support for now, near feature... ;-)
6
7# NTP server needs working config with WL network or internet on boot
8# so some warnings might pop up, but no harm
9ntpdate_enable="YES"
10ntpd_enable="YES"
11ntpd_sync_on_start="YES"
12ntpd_flags="-p /var/run/ntpd.pid -f /var/db/ntp.drift"
13
14# We need no running mail server
15sendmail_enable="NONE"
16
17# Don't let syslog accept input from other remote hosts
18syslogd_enable="YES"
19syslogd_flags="-s -A -c -b 127.0.0.1"
20
21# Remote login without DNS checking as it might not also be functionable
22# -u0 prevent sshd from making DNS requests unless the authentication mechanism
23# or configuration requires it.
24sshd_enable="YES"
25sshd_flags="-u0"
26
27# Don't update the motd as it not writeable, the update_nanobsd_motd is a
28# simple wrapper found at /usr/local/etc/rc.d supporting this featureg
29update_motd="NO"
30update_nanobsd_motd="YES"
31
32# Monitoring deamons
33nrpe2_enable="YES"
34snmpd_enable="YES"
35snmpd_flags="-a -LF w /var/log/snmpd.log"
36
37# HTTP(S) proxy server
38tinyproxy_enable="YES"
39
40# Nameserver for internet and wleiden.net
41maradns_enable="YES"
42dnsmasq_enable="NO"
43fetchzone_enable="YES"
44
45# Make sure generated ssh keys are saved
46nanobsd_save_sshkeys_enable="YES"
47
Note: See TracBrowser for help on using the repository browser.