Skip to content
Snippets Groups Projects
Commit 54afe0e3 authored by Florian Schaal's avatar Florian Schaal
Browse files

allow ipv6 for openvz-container

parent 25907aff
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......@@ -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' => '',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment