Updated Branches:
  refs/heads/4.2 78b745f7c -> f025db958
  refs/heads/master 52099e42b -> 6906a9016


config: Only user low-case names for variables


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/6906a901
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/6906a901
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/6906a901

Branch: refs/heads/master
Commit: 6906a9016dfb3bc51d6332ef523f7818043c3b32
Parents: 52099e4
Author: Wido den Hollander <[email protected]>
Authored: Mon Aug 5 17:37:57 2013 +0200
Committer: Wido den Hollander <[email protected]>
Committed: Mon Aug 5 17:37:57 2013 +0200

----------------------------------------------------------------------
 server/src/com/cloud/configuration/Config.java | 2 +-
 setup/db/db/schema-410to420.sql                | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/6906a901/server/src/com/cloud/configuration/Config.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/configuration/Config.java 
b/server/src/com/cloud/configuration/Config.java
index 1d1624b..b8fc286 100755
--- a/server/src/com/cloud/configuration/Config.java
+++ b/server/src/com/cloud/configuration/Config.java
@@ -145,7 +145,7 @@ public enum Config {
     SnapshotPollInterval("Snapshots", SnapshotManager.class, Integer.class, 
"snapshot.poll.interval", "300", "The time interval in seconds when the 
management server polls for snapshots to be scheduled.", null),
     SnapshotDeltaMax("Snapshots", SnapshotManager.class, Integer.class, 
"snapshot.delta.max", "16", "max delta snapshots between two full snapshots.", 
null),
     BackupSnapshotAferTakingSnapshot("Snapshots", SnapshotManager.class, 
Boolean.class, "snapshot.backup.rightafter", "true", "backup snapshot right 
after snapshot is taken", null),
-    KVMSnapshotEnabled("Snapshots", SnapshotManager.class, Boolean.class, 
"KVM.snapshot.enabled", "false", "whether snapshot is enabled for KVM hosts", 
null),
+    KVMSnapshotEnabled("Snapshots", SnapshotManager.class, Boolean.class, 
"kvm.snapshot.enabled", "false", "whether snapshot is enabled for KVM hosts", 
null),
 
        // Advanced
     JobExpireMinutes("Advanced", ManagementServer.class, String.class, 
"job.expire.minutes", "1440", "Time (in minutes) for async-jobs to be kept in 
system", null),

http://git-wip-us.apache.org/repos/asf/cloudstack/blob/6906a901/setup/db/db/schema-410to420.sql
----------------------------------------------------------------------
diff --git a/setup/db/db/schema-410to420.sql b/setup/db/db/schema-410to420.sql
index f5094c5..865d915 100644
--- a/setup/db/db/schema-410to420.sql
+++ b/setup/db/db/schema-410to420.sql
@@ -2231,6 +2231,6 @@ CREATE TABLE `cloud_usage`.`usage_vmsnapshot` (
 ) ENGINE=InnoDB CHARSET=utf8;
 
 INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Advanced', 'DEFAULT', 
'management-server', 'healthcheck.update.interval', '600', 'Time Interval to 
fetch the LB health check states (in sec)');
-INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Snapshots', 'DEFAULT', 
'SnapshotManager', 'KVM.snapshot.enabled', 'false', 'whether snapshot is 
enabled for KVM hosts');
+INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Snapshots', 'DEFAULT', 
'SnapshotManager', 'kvm.snapshot.enabled', 'false', 'whether snapshot is 
enabled for KVM hosts');
 INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Advanced', 'DEFAULT', 
'management-server', 'eip.use.multiple.netscalers', 'false', 'Should be set to 
true, if there will be multiple NetScaler devices providing EIP service in a 
zone');
 INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Snapshots', 'DEFAULT', 
'SnapshotManager', 'snapshot.backup.rightafter', 'true', 'backup snapshot right 
after snapshot is taken');

Reply via email to