diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2007-12-17 00:39:44 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2007-12-17 00:39:44 +0000 |
commit | 243f00e73aabfd90334c62c8ccfce871c0d9ea42 (patch) | |
tree | fa2369dbe52ee638e96b3d8de6564063574b852c /etc/rc.newipsecdns | |
parent | 979cd6db9c6a81493498660f7205faabf25ed6ec (diff) | |
download | pfsense-243f00e73aabfd90334c62c8ccfce871c0d9ea42.zip pfsense-243f00e73aabfd90334c62c8ccfce871c0d9ea42.tar.gz |
Adding dnswatch support.
Obtained-from: m0n0wall
Diffstat (limited to 'etc/rc.newipsecdns')
-rwxr-xr-x | etc/rc.newipsecdns | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/etc/rc.newipsecdns b/etc/rc.newipsecdns new file mode 100755 index 0000000..85c7032 --- /dev/null +++ b/etc/rc.newipsecdns @@ -0,0 +1,46 @@ +#!/usr/local/bin/php -f +<?php +/* + $Id$ + part of m0n0wall (http://m0n0.ch/wall) + + Copyright (C) 2007 Manuel Kasper <mk@neon1.net>. + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. +*/ + + /* parse the configuration and include all functions used below */ + require_once("config.inc"); + require_once("functions.inc"); + + /* the IP address that a tunnel's remote gateway host name resolves + to has changed; reload IPsec completely (we can't only change one + specific tunnel at this time) */ + + /* make sure to wait until the boot scripts have finished */ + while (file_exists("{$g['varrun_path']}/booting")) { + sleep(1); + } + + vpn_ipsec_configure(); +?> |