Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dirk Dankhoff
ISPConfig 3
Commits
54afe0e3
Commit
54afe0e3
authored
Feb 15, 2015
by
Florian Schaal
Browse files
allow ipv6 for openvz-container
parent
25907aff
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_dev_collection.sql
View file @
54afe0e3
...
...
@@ -38,3 +38,5 @@ ALTER TABLE `web_backup` CHANGE `filesize` `filesize` VARCHAR(20) NOT NULL DEFAU
ALTER
TABLE
`sys_datalog`
ADD
INDEX
`dbtable`
(
`dbtable`
(
25
),
`dbidx`
(
25
)),
ADD
INDEX
(
`action`
);
ALTER
TABLE
`mail_user`
ADD
`greylisting`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
AFTER
`postfix`
;
ALTER
TABLE
`mail_forwarding`
ADD
`greylisting`
ENUM
(
'n'
,
'y'
)
NOT
NULL
DEFAULT
'n'
AFTER
`active`
;
ALTER
TABLE
`openvz_ip`
CHANGE
`ip_address`
`ip_address`
VARCHAR
(
39
)
DEFAULT
NULL
;
interface/web/vm/form/openvz_ip.tform.php
View file @
54afe0e3
...
...
@@ -77,10 +77,9 @@ $form["tabs"]['main'] = array (
'ip_address'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'ISIPV4'
,
'errmsg'
=>
'ip_error_wrong'
),
1
=>
array
(
'type'
=>
'UNIQUE'
,
'errmsg'
=>
'ip_error_unique'
),
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'ISIP'
,
'errmsg'
=>
'ip_error_wrong'
),
1
=>
array
(
'type'
=>
'UNIQUE'
,
'errmsg'
=>
'ip_error_unique'
),
),
'default'
=>
''
,
'value'
=>
''
,
...
...
Write
Preview
Supports
Markdown
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