diff options
author | markm <markm@FreeBSD.org> | 2000-02-24 23:08:19 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2000-02-24 23:08:19 +0000 |
commit | 27fe751781019519d2a2b6a7584e6ebb62683272 (patch) | |
tree | 2e2c7aea33a3a6ec5b33710ea56d77a5ea57b26a | |
parent | eb2f1b4a7cabffc6afb1972680f4027374993a3d (diff) | |
download | FreeBSD-src-27fe751781019519d2a2b6a7584e6ebb62683272.zip FreeBSD-src-27fe751781019519d2a2b6a7584e6ebb62683272.tar.gz |
Add userland tweakables for OpenSSH and OpenSSL.
-rw-r--r-- | etc/defaults/make.conf | 7 | ||||
-rw-r--r-- | etc/defaults/rc.conf | 3 | ||||
-rw-r--r-- | share/examples/etc/make.conf | 7 |
3 files changed, 17 insertions, 0 deletions
diff --git a/etc/defaults/make.conf b/etc/defaults/make.conf index bc00b80..104406b 100644 --- a/etc/defaults/make.conf +++ b/etc/defaults/make.conf @@ -29,6 +29,13 @@ # To avoid building various parts of the base system: #NO_SENDMAIL= true #NO_CVS= true +#NO_OPENSSH= true +#NO_OPENSSL= true +# +# To tell the base system that you are using RSAREF (from ports). +# (This needs revisiting) - it is very likely that this is too +# heavily tied to USA_RESIDENT==YES. +#RSAREF= YES # # To avoid running MAKEDEV all on /dev during install: #NO_MAKEDEV= true diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf index 30f48e4..a665a0e 100644 --- a/etc/defaults/rc.conf +++ b/etc/defaults/rc.conf @@ -124,6 +124,9 @@ pppoed_enable="NO" # Run the PPP over Ethernet daemon. pppoed_provider="*" # Provider and ppp(8) config file entry. pppoed_flags="-P /var/run/pppoed.pid" # Flags to pppoed (if enabled). pppoed_interface="fxp0" # The interface that pppoed runs on. +sshd_program="/usr/sbin/sshd" # path to sshd, if you want a different one. +sshd_enable="NO" # Enable sshd +sshd_flags="" # Additional flags for sshd. ### Network Time Services options: ### timed_enable="NO" # Run the time daemon (or NO). diff --git a/share/examples/etc/make.conf b/share/examples/etc/make.conf index bc00b80..104406b 100644 --- a/share/examples/etc/make.conf +++ b/share/examples/etc/make.conf @@ -29,6 +29,13 @@ # To avoid building various parts of the base system: #NO_SENDMAIL= true #NO_CVS= true +#NO_OPENSSH= true +#NO_OPENSSL= true +# +# To tell the base system that you are using RSAREF (from ports). +# (This needs revisiting) - it is very likely that this is too +# heavily tied to USA_RESIDENT==YES. +#RSAREF= YES # # To avoid running MAKEDEV all on /dev during install: #NO_MAKEDEV= true |