aboutsummaryrefslogtreecommitdiff
path: root/release/picobsd/floppy.tree
diff options
context:
space:
mode:
authorJosef Karthauser <joe@FreeBSD.org>2000-12-23 19:11:53 +0000
committerJosef Karthauser <joe@FreeBSD.org>2000-12-23 19:11:53 +0000
commit4050e5eb738512791463de522f1fd2b82c5c7f9a (patch)
tree861ab849bc14801c1b7e304705ee385fa313558a /release/picobsd/floppy.tree
parent04dbe0f9b9fbc84ffb315ba557ee162db424c5e8 (diff)
downloadsrc-4050e5eb738512791463de522f1fd2b82c5c7f9a.tar.gz
src-4050e5eb738512791463de522f1fd2b82c5c7f9a.zip
MF4: revision 1.3.2.1.
inetd is not always present, check before invoking it.
Notes
Notes: svn path=/head/; revision=70313
Diffstat (limited to 'release/picobsd/floppy.tree')
-rw-r--r--release/picobsd/floppy.tree/etc/rc2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/picobsd/floppy.tree/etc/rc b/release/picobsd/floppy.tree/etc/rc
index baeade72ab5b..84c0fb8efc48 100644
--- a/release/picobsd/floppy.tree/etc/rc
+++ b/release/picobsd/floppy.tree/etc/rc
@@ -49,7 +49,7 @@ fi
if [ -n "$network_pass2_done" ]; then
network_pass3
fi
-if [ "X${inetd_enable}" = X"YES" ]; then
+if [ "X${inetd_enable}" = X"YES" -a -f /stand/inetd ]; then
echo "Starting inetd."; inetd ${inetd_flags}
fi