Florian Schaal
2015-02-15 54afe0e3036f339e623e98f5d3fbb397376c7ca2
allow ipv6 for openvz-container
2 files modified
9 ■■■■■ changed files
install/sql/incremental/upd_dev_collection.sql 2 ●●●●● patch | view | raw | blame | history
interface/web/vm/form/openvz_ip.tform.php 7 ●●●●● patch | view | raw | blame | history
install/sql/incremental/upd_dev_collection.sql
@@ -38,3 +38,5 @@
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
@@ -77,10 +77,9 @@
        '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'  => '',