summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-10-09 18:44:18 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-10-09 18:44:18 +0000
commit2684738cdcde59810b1b7f7ca7535b285c658238 (patch)
treee63637039c4773f5a0113ae189ce44557897cfa4 /etc
parentefbcc933bee3ad59435a8d3ecafd435f24235387 (diff)
isakmpd can work without an isakmpd.conf, but not without an
isakmpd.policy -- change startup conditions accordingly.
Diffstat (limited to 'etc')
-rw-r--r--etc/rc6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/rc b/etc/rc
index 0a10818d782..9e789b8dcef 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,4 +1,4 @@
-# $OpenBSD: rc,v 1.184 2001/09/21 05:51:13 deraadt Exp $
+# $OpenBSD: rc,v 1.185 2001/10/09 18:44:17 angelos Exp $
# System startup script run by init on autoboot
# or after single-user.
@@ -221,9 +221,9 @@ if [ "X${photurisd_flags}" != X"NO" -a -e /etc/photuris/photuris.conf ]; then
fi
# $isakmpd_flags is imported from /etc/rc.conf;
-# If $isakmpd_flags == NO or /etc/isakmpd/isakmpd.conf doesn't exist, then
+# If $isakmpd_flags == NO or /etc/isakmpd/isakmpd.policy doesn't exist, then
# isakmpd isn't run.
-if [ "X${isakmpd_flags}" != X"NO" -a -e /etc/isakmpd/isakmpd.conf ]; then
+if [ "X${isakmpd_flags}" != X"NO" -a -e /etc/isakmpd/isakmpd.policy ]; then
echo 'starting isakmpd'; isakmpd ${isakmpd_flags}
fi