From abec04f6cba33855b469c7c3fee96f99d3df5400 Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Thu, 04 Mar 2010 04:05:04 -0500 Subject: [PATCH] Fixed: FS#1098 - Improve 2 init script. --- install/apps/bastille-firewall | 16 +++++++++++++++- docs/INSTALL_DEBIAN_5.0_courier_mydns.txt | 11 +++++++++++ interface/web/dns/dns_wizard.php | 8 ++++---- docs/INSTALL_UBUNTU_8.10.txt | 11 +++++++++++ docs/INSTALL_DEBIAN_6.0_courier_mydns.txt | 11 +++++++++++ 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 0954a0e..138f881 100644 --- a/docs/INSTALL_DEBIAN_5.0_courier_mydns.txt +++ b/docs/INSTALL_DEBIAN_5.0_courier_mydns.txt @@ -186,6 +186,17 @@ # Based upon skeleton 1.9.4 by Miquel van Smoorenburg # <miquels@cistron.nl> and Ian Murdock <imurdock@gnu.ai.mit.edu>. # +### 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 267089f..b9010cb 100644 --- a/docs/INSTALL_DEBIAN_6.0_courier_mydns.txt +++ b/docs/INSTALL_DEBIAN_6.0_courier_mydns.txt @@ -203,6 +203,17 @@ # Based upon skeleton 1.9.4 by Miquel van Smoorenburg # <miquels@cistron.nl> and Ian Murdock <imurdock@gnu.ai.mit.edu>. # +### 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 f6896ea..0980dc9 100644 --- a/docs/INSTALL_UBUNTU_8.10.txt +++ b/docs/INSTALL_UBUNTU_8.10.txt @@ -169,6 +169,17 @@ # Based upon skeleton 1.9.4 by Miquel van Smoorenburg # <miquels@cistron.nl> and Ian Murdock <imurdock@gnu.ai.mit.edu>. # +### 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 2f701ec..86da005 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 3808e67..31d704d 100644 --- a/interface/web/dns/dns_wizard.php +++ b/interface/web/dns/dns_wizard.php @@ -138,10 +138,10 @@ if(isset($_POST['ns2']) && $_POST['ns2'] == '') $error .= $app->lng('error_ns2_empty').'<br />'; if(isset($_POST['email']) && $_POST['email'] == '') $error .= $app->lng('error_email_empty').'<br />'; - if(!preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['domain'])) $error .= $app->lng('error_domain_regex').'<br />'; - if(!preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['ns1'])) $error .= $app->lng('error_ns1_regex').'<br />'; - if(!preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['ns2'])) $error .= $app->lng('error_ns2_regex').'<br />'; - if(!preg_match('/^\w+[\w.-]*\w+@\w+[\w.-]*\w+\.[a-z]{2,10}$/i',$_POST['email'])) $error .= $app->lng('error_email_regex').'<br />'; + if(isset($_POST['domain']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['domain'])) $error .= $app->lng('error_domain_regex').'<br />'; + if(isset($_POST['ns1']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['ns1'])) $error .= $app->lng('error_ns1_regex').'<br />'; + if(isset($_POST['ns2']) && !preg_match('/^[\w\.\-]{2,64}\.[a-zA-Z]{2,10}[\.]{0,1}$/',$_POST['ns2'])) $error .= $app->lng('error_ns2_regex').'<br />'; + 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').'<br />'; // 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'])) { -- Gitblit v1.9.1