From abec04f6cba33855b469c7c3fee96f99d3df5400 Mon Sep 17 00:00:00 2001 From: tbrehm Date: Thu, 4 Mar 2010 09:05:04 +0000 Subject: [PATCH] Fixed: FS#1098 - Improve 2 init script. --- docs/INSTALL_DEBIAN_5.0_courier_mydns.txt | 11 +++++++++++ docs/INSTALL_DEBIAN_6.0_courier_mydns.txt | 11 +++++++++++ docs/INSTALL_UBUNTU_8.10.txt | 11 +++++++++++ install/apps/bastille-firewall | 16 +++++++++++++++- interface/web/dns/dns_wizard.php | 8 ++++---- 5 files changed, 52 insertions(+), 5 deletions(-) diff --git a/docs/INSTALL_DEBIAN_5.0_courier_mydns.txt b/docs/INSTALL_DEBIAN_5.0_courier_mydns.txt index 0954a0ec64..138f8816a4 100644 --- a/docs/INSTALL_DEBIAN_5.0_courier_mydns.txt +++ b/docs/INSTALL_DEBIAN_5.0_courier_mydns.txt @@ -186,6 +186,17 @@ vi /etc/init.d/mydns # Based upon skeleton 1.9.4 by Miquel van Smoorenburg # and Ian Murdock . # +### BEGIN INIT INFO +# Provides: MyDNS +# Required-Start: $syslog +# Should-Start: +# Required-Stop: +# Should-Stop: +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: MyDNS Server +# Description: MyDNS DNS Server +### END INIT INFO set -e diff --git a/docs/INSTALL_DEBIAN_6.0_courier_mydns.txt b/docs/INSTALL_DEBIAN_6.0_courier_mydns.txt index 267089f6a2..b9010cbbd3 100644 --- a/docs/INSTALL_DEBIAN_6.0_courier_mydns.txt +++ b/docs/INSTALL_DEBIAN_6.0_courier_mydns.txt @@ -203,6 +203,17 @@ vi /etc/init.d/mydns # Based upon skeleton 1.9.4 by Miquel van Smoorenburg # and Ian Murdock . # +### BEGIN INIT INFO +# Provides: MyDNS +# Required-Start: $syslog +# Should-Start: +# Required-Stop: +# Should-Stop: +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: MyDNS Server +# Description: MyDNS DNS Server +### END INIT INFO set -e diff --git a/docs/INSTALL_UBUNTU_8.10.txt b/docs/INSTALL_UBUNTU_8.10.txt index f6896ea86c..0980dc9b20 100644 --- a/docs/INSTALL_UBUNTU_8.10.txt +++ b/docs/INSTALL_UBUNTU_8.10.txt @@ -169,6 +169,17 @@ and enter the following lines (between the "---"-lines): # Based upon skeleton 1.9.4 by Miquel van Smoorenburg # and Ian Murdock . # +### BEGIN INIT INFO +# Provides: MyDNS +# Required-Start: $syslog +# Should-Start: +# Required-Stop: +# Should-Stop: +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: MyDNS Server +# Description: MyDNS DNS Server +### END INIT INFO set -e diff --git a/install/apps/bastille-firewall b/install/apps/bastille-firewall index 2f701ec92a..86da005ac7 100644 --- a/install/apps/bastille-firewall +++ b/install/apps/bastille-firewall @@ -41,9 +41,23 @@ # # ** As of 0.99-beta1, this script merely kicks off the real script, # either /sbin/bastille-ipchains or /sbin/bastille-netfilter - +# # Default is to use the 'ipchains' script, which will load the # ipchains compatibility module if you're using a 2.4 kernel +# +### BEGIN INIT INFO +# Provides: Bastille-Firewall +# Required-Start: $syslog +# Should-Start: +# Required-Stop: +# Should-Stop: +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Bastille Firewall +# Description: Bastille Firewall for iptables and ipchains +### END INIT INFO + + REALSCRIPT=/sbin/bastille-ipchains PATH=/sbin:/bin:/usr/sbin:/usr/bin diff --git a/interface/web/dns/dns_wizard.php b/interface/web/dns/dns_wizard.php index 3808e673e9..31d704d963 100644 --- a/interface/web/dns/dns_wizard.php +++ b/interface/web/dns/dns_wizard.php @@ -138,10 +138,10 @@ if($_POST['create'] == 1) { if(isset($_POST['ns2']) && $_POST['ns2'] == '') $error .= $app->lng('error_ns2_empty').'
'; if(isset($_POST['email']) && $_POST['email'] == '') $error .= $app->lng('error_email_empty').'
'; - if(!preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['domain'])) $error .= $app->lng('error_domain_regex').'
'; - if(!preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['ns1'])) $error .= $app->lng('error_ns1_regex').'
'; - if(!preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['ns2'])) $error .= $app->lng('error_ns2_regex').'
'; - if(!preg_match('/^\w+[\w.-]*\w+@\w+[\w.-]*\w+\.[a-z]{2,10}$/i',$_POST['email'])) $error .= $app->lng('error_email_regex').'
'; + if(isset($_POST['domain']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['domain'])) $error .= $app->lng('error_domain_regex').'
'; + if(isset($_POST['ns1']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['ns1'])) $error .= $app->lng('error_ns1_regex').'
'; + if(isset($_POST['ns2']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['ns2'])) $error .= $app->lng('error_ns2_regex').'
'; + if(isset($_POST['email']) && !preg_match('/^\w+[\w.-]*\w+@\w+[\w.-]*\w+\.[a-z]{2,10}$/i',$_POST['email'])) $error .= $app->lng('error_email_regex').'
'; // make sure that the record belongs to the clinet group and not the admin group when a dmin inserts it if($_SESSION["s"]["user"]["typ"] == 'admin' && isset($_POST['client_group_id'])) { -- GitLab