summaryrefslogtreecommitdiff
path: root/etc/rc
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>1999-11-11 22:28:44 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>1999-11-11 22:28:44 +0000
commit0ca57a9a9e8a83c9582b41197d55c27e30a58264 (patch)
tree2f9fafd166430376576859212c1f731173b10736 /etc/rc
parent5b257b2ca551778127fcf8da6921b3cf26b625d1 (diff)
Allow identd to be used w/o inetd.
Diffstat (limited to 'etc/rc')
-rw-r--r--etc/rc6
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/rc b/etc/rc
index efaef82a842..ed46e490f97 100644
--- a/etc/rc
+++ b/etc/rc
@@ -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