Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISPConfig
ISPConfig 3
Commits
abec04f6
Commit
abec04f6
authored
Mar 04, 2010
by
tbrehm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed: FS#1098 - Improve 2 init script.
parent
28bf89bc
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
52 additions
and
5 deletions
+52
-5
docs/INSTALL_DEBIAN_5.0_courier_mydns.txt
docs/INSTALL_DEBIAN_5.0_courier_mydns.txt
+11
-0
docs/INSTALL_DEBIAN_6.0_courier_mydns.txt
docs/INSTALL_DEBIAN_6.0_courier_mydns.txt
+11
-0
docs/INSTALL_UBUNTU_8.10.txt
docs/INSTALL_UBUNTU_8.10.txt
+11
-0
install/apps/bastille-firewall
install/apps/bastille-firewall
+15
-1
interface/web/dns/dns_wizard.php
interface/web/dns/dns_wizard.php
+4
-4
No files found.
docs/INSTALL_DEBIAN_5.0_courier_mydns.txt
View file @
abec04f6
...
...
@@ -186,6 +186,17 @@ vi /etc/init.d/mydns
# 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
...
...
docs/INSTALL_DEBIAN_6.0_courier_mydns.txt
View file @
abec04f6
...
...
@@ -203,6 +203,17 @@ vi /etc/init.d/mydns
# 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
...
...
docs/INSTALL_UBUNTU_8.10.txt
View file @
abec04f6
...
...
@@ -169,6 +169,17 @@ and enter the following lines (between the "---"-lines):
# 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
...
...
install/apps/bastille-firewall
View file @
abec04f6
...
...
@@ -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
...
...
interface/web/dns/dns_wizard.php
View file @
abec04f6
...
...
@@ -138,10 +138,10 @@ if($_POST['create'] == 1) {
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'
]))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment