Browse Source

isakmpd startup stuff

OPENBSD_2_5
deraadt 25 years ago
parent
commit
1a18a7b46b
2 changed files with 10 additions and 2 deletions
  1. +8
    -1
      src/etc/rc
  2. +2
    -1
      src/etc/rc.conf

+ 8
- 1
src/etc/rc View File

@ -1,4 +1,4 @@
# $OpenBSD: rc,v 1.93 1998/11/11 09:22:49 downsj Exp $
# $OpenBSD: rc,v 1.94 1998/12/21 03:33:43 deraadt Exp $
# System startup script run by init on autoboot
# or after single-user.
@ -143,6 +143,13 @@ if [ "X${photurisd_flags}" != X"NO" -a -e /etc/photuris/photuris.conf ]; then
echo 'starting photurisd'; photurisd ${photurisd_flags}
fi
# $isakmpd_flags is imported from /etc/rc.conf;
# If $isakmpd_flags == NO or /etc/isakmpd.conf doesn't exist, then
# isakmpd isn't run.
if [ "X${isakmpd_flags}" != X"NO" -a -e /etc/isakmpd.conf ]; then
echo 'starting isakmpd'; isakmpd ${isakmpd_flags}
fi
echo -n 'starting rpc daemons:'
# $portmap is imported from /etc/rc.conf;


+ 2
- 1
src/etc/rc.conf View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $OpenBSD: rc.conf,v 1.33 1998/11/11 09:22:49 downsj Exp $
# $OpenBSD: rc.conf,v 1.34 1998/12/21 03:33:43 deraadt Exp $
# set these to "NO" to turn them off. otherwise, they're used as flags
routed_flags=NO # for 'normal' use: routed_flags="-q"
@ -13,6 +13,7 @@ smtpfwdd_flags=NO # for 'normal' use: smtpfwdd_flags="", no -bd above.
named_flags=NO # for 'normal' use: named_flags=""
timed_flags=NO # for 'normal' use: timed_flags=""
photurisd_flags=NO # for 'normal' use: photurisd_flags=""
isakmpd_flags=NO # for 'normal' use: isakmpd_flags=""
mopd_flags=NO # for 'normal' use: mopd_flags="-a"
httpd_flags=NO # for 'normal' use: httpd_flags=""
apmd_flags=NO # for 'normal' use: apmd_flags=""


Loading…
Cancel
Save