From 22f6ad7566ffa2882e597e30e5ad22ae119db3b6 Mon Sep 17 00:00:00 2001 From: frank Date: Fri, 2 Dec 2011 15:41:29 -0800 Subject: [PATCH] make vm_template.enable_sshkey default to 0 --- setup/db/create-schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/db/create-schema.sql b/setup/db/create-schema.sql index 7e8ae5d2492..ed8a51efe07 100755 --- a/setup/db/create-schema.sql +++ b/setup/db/create-schema.sql @@ -908,7 +908,7 @@ CREATE TABLE `cloud`.`vm_template` ( `checksum` varchar(255) COMMENT 'checksum for the template root disk', `display_text` varchar(4096) NULL COMMENT 'Description text set by the admin for display purpose only', `enable_password` int(1) unsigned NOT NULL default 1 COMMENT 'true if this template supports password reset', - `enable_sshkey` int(1) unsigned NOT NULL default 1 COMMENT 'true if this template supports sshkey reset', + `enable_sshkey` int(1) unsigned NOT NULL default 0 COMMENT 'true if this template supports sshkey reset', `guest_os_id` bigint unsigned NOT NULL COMMENT 'the OS of the template', `bootable` int(1) unsigned NOT NULL default 1 COMMENT 'true if this template represents a bootable ISO', `prepopulate` int(1) unsigned NOT NULL default 0 COMMENT 'prepopulate this template to primary storage',