diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-05-30 01:37:57 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-05-30 01:37:57 +0000 |
commit | 100c10e220618929f54779e44c1f6cd6ebefe495 (patch) | |
tree | 8170b92e5bd520bcae92663026e40afcf212c811 /etc/rc.local | |
parent | e658634699738d68a870724fbc5dd2c3d61da191 (diff) |
Add netatalk start-up support.
Diffstat (limited to 'etc/rc.local')
-rw-r--r-- | etc/rc.local | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/etc/rc.local b/etc/rc.local index c9ac69fdfd0..5880c5d0901 100644 --- a/etc/rc.local +++ b/etc/rc.local @@ -1,4 +1,4 @@ -# $OpenBSD: rc.local,v 1.24 1999/03/01 04:41:48 fgsch Exp $ +# $OpenBSD: rc.local,v 1.25 1999/05/30 01:37:56 angelos Exp $ # site-specific startup actions, daemons, and other things which # can be done AFTER your system goes into securemode. For actions @@ -34,3 +34,9 @@ fi #fi echo '.' + +# Netatalk stuff +if [ -f /etc/netatalk/rc.conf ]; then + . /etc/netatalk/rc.atalk +fi + |