diff options
Diffstat (limited to 'examples/example')
-rwxr-xr-x | examples/example/etc/rc.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/example/etc/rc.conf b/examples/example/etc/rc.conf index 02c470c..a59505e 100755 --- a/examples/example/etc/rc.conf +++ b/examples/example/etc/rc.conf | |||
@@ -1,4 +1,19 @@ | |||
1 | # Pretuned by German Engineers | ||
2 | |||
3 | # No network interfaces in jails | ||
1 | network_interfaces="" | 4 | network_interfaces="" |
5 | |||
6 | # Prevent rpc | ||
2 | rpcbind_enable="NO" | 7 | rpcbind_enable="NO" |
8 | |||
9 | # Prevent loads of jails doing their cron jobs at the same time | ||
3 | cron_flags="$cron_flags -J 15" | 10 | cron_flags="$cron_flags -J 15" |
11 | |||
12 | # Prevent syslog to open sockets | ||
4 | syslogd_flags="-ss" | 13 | syslogd_flags="-ss" |
14 | |||
15 | # Prevent sendmail to try to connect to localhost | ||
16 | # sendmail_enable="NONE" | ||
17 | |||
18 | # Bring up sshd, it takes some time and uses some entropy on first startup | ||
19 | # sshd_enable="YES" | ||