From 7b3d5000f9bebfbfe16f3ed303461b196f47abfb Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sun, 17 Apr 2005 22:57:56 +0000 Subject: [PATCH] * Restore original carp behavior (running from /usr/local/etc/rc.d) * Run VPN setup later in the bootup process --- etc/rc.bootup | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/etc/rc.bootup b/etc/rc.bootup index 45423189bf..bcb9c44f6e 100755 --- a/etc/rc.bootup +++ b/etc/rc.bootup @@ -152,9 +152,6 @@ /* start pptpd */ vpn_pptpd_configure(); - /* start IPsec tunnels */ - vpn_ipsec_configure(); - /* start the captive portal */ captiveportal_configure(); @@ -167,6 +164,9 @@ /* start ftp proxy helpers if they are enabled */ system_start_ftp_helpers(); + /* start IPsec tunnels */ + vpn_ipsec_configure(); + /* done */ unlink("{$g['varrun_path']}/booting"); $g['booting'] = FALSE;