diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 1999-11-11 22:28:44 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 1999-11-11 22:28:44 +0000 |
commit | 0ca57a9a9e8a83c9582b41197d55c27e30a58264 (patch) | |
tree | 2f9fafd166430376576859212c1f731173b10736 /etc/rc | |
parent | 5b257b2ca551778127fcf8da6921b3cf26b625d1 (diff) |
Allow identd to be used w/o inetd.
Diffstat (limited to 'etc/rc')
-rw-r--r-- | etc/rc | 6 |
1 files changed, 5 insertions, 1 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 |