@@ -1093,14 +1093,15 @@ CREATE TABLE IF NOT EXISTS `openvz_template` (
10931093 ` capability` varchar (255 ) DEFAULT NULL ,
10941094 ` features` varchar (255 ) DEFAULT NULL ,
10951095 ` iptables` varchar (255 ) DEFAULT NULL ,
1096+ ` custom` text ,
10961097 PRIMARY KEY (` template_id` )
10971098) ENGINE= MyISAM DEFAULT CHARSET= utf8 ;
10981099
10991100--
11001101-- Dumping data for table `openvz_template`
11011102--
11021103
1103- INSERT INTO `openvz_template` (`template_id`, `sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `template_name`, `diskspace`, `traffic`, `bandwidth`, `ram`, `ram_burst`, `cpu_units`, `cpu_num`, `cpu_limit`, `io_priority`, `active`, `description`, `numproc`, `numtcpsock`, `numothersock`, `vmguarpages`, `kmemsize`, `tcpsndbuf`, `tcprcvbuf`, `othersockbuf`, `dgramrcvbuf`, `oomguarpages`, `privvmpages`, `lockedpages`, `shmpages`, `physpages`, `numfile`, `avnumproc`, `numflock`, `numpty`, `numsiginfo`, `dcachesize`, `numiptent`, `swappages`, `hostname`, `nameserver`, `create_dns`, `capability`, `features`, `iptables`) VALUES(1, 1, 1, 'riud', 'riud', '', 'small', 10, -1, -1, 256, 512, 1000, 4, 400, 4, 'y', '', '999999:999999', '7999992:7999992', '7999992:7999992', '65536:65536', '2147483646:2147483646', '214748160:396774400', '214748160:396774400', '214748160:396774400', '214748160:396774400', '65536:65536', '131072:131072', '999999:999999', '65536:65536', '0:2147483647', '23999976:23999976', '180:180', '999999:999999', '500000:500000', '999999:999999', '2147483646:2147483646', '999999:999999', '256000:256000', 'v{VEID}.test.tld', '8.8.8.8 8.8.4.4', 'n', '', '', '');
1104+ INSERT INTO `openvz_template` (`template_id`, `sys_userid`, `sys_groupid`, `sys_perm_user`, `sys_perm_group`, `sys_perm_other`, `template_name`, `diskspace`, `traffic`, `bandwidth`, `ram`, `ram_burst`, `cpu_units`, `cpu_num`, `cpu_limit`, `io_priority`, `active`, `description`, `numproc`, `numtcpsock`, `numothersock`, `vmguarpages`, `kmemsize`, `tcpsndbuf`, `tcprcvbuf`, `othersockbuf`, `dgramrcvbuf`, `oomguarpages`, `privvmpages`, `lockedpages`, `shmpages`, `physpages`, `numfile`, `avnumproc`, `numflock`, `numpty`, `numsiginfo`, `dcachesize`, `numiptent`, `swappages`, `hostname`, `nameserver`, `create_dns`, `capability`, `features`, `iptables`, `custom`) VALUES(1, 1, 1, 'riud', 'riud', '', 'small', 10, -1, -1, 256, 512, 1000, 4, 400, 4, 'y', '', '999999:999999', '7999992:7999992', '7999992:7999992', '65536:65536', '2147483646:2147483646', '214748160:396774400', '214748160:396774400', '214748160:396774400', '214748160:396774400', '65536:65536', '131072:131072', '999999:999999', '65536:65536', '0:2147483647', '23999976:23999976', '180:180', '999999:999999', '500000:500000', '999999:999999', '2147483646:2147483646', '999999:999999', '256000:256000', 'v{VEID}.test.tld', '8.8.8.8 8.8.4.4', 'n', '', '', '', '');
11041105
11051106-- --------------------------------------------------------
11061107
@@ -1141,6 +1142,7 @@ CREATE TABLE IF NOT EXISTS `openvz_vm` (
11411142 ` hostname` varchar (255 ) DEFAULT NULL ,
11421143 ` vm_password` varchar (255 ) DEFAULT NULL ,
11431144 ` start_boot` varchar (255 ) NOT NULL DEFAULT ' y' ,
1145+ ` bootorder` int (11 ) NOT NULL DEFAULT ' 1' ,
11441146 ` active` varchar (255 ) NOT NULL DEFAULT ' y' ,
11451147 ` active_until_date` date NOT NULL DEFAULT ' 0000-00-00' ,
11461148 ` description` text ,
@@ -1159,6 +1161,7 @@ CREATE TABLE IF NOT EXISTS `openvz_vm` (
11591161 ` features` text ,
11601162 ` iptabless` text ,
11611163 ` config` mediumtext,
1164+ ` custom` text ,
11621165 PRIMARY KEY (` vm_id` )
11631166) ENGINE= MyISAM DEFAULT CHARSET= utf8 ;
11641167
0 commit comments