diff options
author | 1999-11-11 22:28:43 +0000 | |
---|---|---|
committer | 1999-11-11 22:28:43 +0000 | |
commit | 4265ef72cbb2f0cde4c496878e8fb986d6ff95a0 (patch) | |
tree | 6f27da01e1a2f555481bb9f136e2ef9daebb556e | |
parent | Add support for sending signals other than SIGHUP and optionally (diff) | |
download | wireguard-openbsd-4265ef72cbb2f0cde4c496878e8fb986d6ff95a0.tar.xz wireguard-openbsd-4265ef72cbb2f0cde4c496878e8fb986d6ff95a0.zip |
Allow identd to be used w/o inetd.
-rw-r--r-- | etc/rc | 6 | ||||
-rw-r--r-- | etc/rc.conf | 5 |
2 files changed, 9 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.123 1999/10/18 01:46:24 deraadt Exp $ +# $OpenBSD: rc,v 1.124 1999/11/11 22:28:43 fgsch Exp $ # System startup script run by init on autoboot # or after single-user. @@ -411,6 +411,10 @@ if [ "X${ftpd_flags}" != X"NO" ]; then echo -n ' ftpd'; /usr/libexec/ftpd ${ftpd_flags} fi +if [ "X${identd_flags}" != X"NO" ]; then + echo -n ' identd'; /usr/libexec/identd ${identd_flags} +fi + # $smtpfwdd_flags is imported from /etc/rc.conf; # If $smtpfwdd_flags == NO, smtpfwdd isn't run. if [ "X${smtpfwdd_flags}" != X"NO" ]; then diff --git a/etc/rc.conf b/etc/rc.conf index b0948c4a112..efb4e9c6a90 100644 --- a/etc/rc.conf +++ b/etc/rc.conf @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: rc.conf,v 1.40 1999/10/17 00:58:02 millert Exp $ +# $OpenBSD: rc.conf,v 1.41 1999/11/11 22:28:43 fgsch Exp $ # set these to "NO" to turn them off. otherwise, they're used as flags routed_flags=NO # for normal use: "-q" @@ -23,6 +23,9 @@ dhcpd_flags=NO # for normal use: "-q" # Set to NO if ftpd is running out of inetd ftpd_flags=NO # for non-inetd use: "-D" +# Set to NO if identd is running out of inetd +identd_flags=NO # for non-inetd use: "-b -u nobody -elo" + # On some architectures, you must also disable console getty in /etc/ttys xdm_flags=NO # for normal use: "" |