engine: add upgrade path from 4.5.1 to 4.5.2 Signed-off-by: Rohit Yadav <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/bc636de1 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/bc636de1 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/bc636de1 Branch: refs/heads/master Commit: bc636de1225e44f5d3a52f45453a0f4f6f79a958 Parents: 8daa665 Author: Rohit Yadav <[email protected]> Authored: Mon May 18 22:09:36 2015 +0100 Committer: Rohit Yadav <[email protected]> Committed: Mon May 18 22:09:36 2015 +0100 ---------------------------------------------------------------------- engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java | 2 ++ ui/index.jsp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/bc636de1/engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java ---------------------------------------------------------------------- diff --git a/engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java b/engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java index 26367d1..2ad1481 100755 --- a/engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java +++ b/engine/schema/src/com/cloud/upgrade/DatabaseUpgradeChecker.java @@ -260,6 +260,8 @@ public class DatabaseUpgradeChecker implements SystemIntegrityChecker { _upgradeMap.put("4.5.0", new DbUpgrade[] {new Upgrade450to451(), new Upgrade451to452()}); + _upgradeMap.put("4.5.1", new DbUpgrade[] {new Upgrade451to452()}); + //CP Upgrades _upgradeMap.put("3.0.3", new DbUpgrade[] {new Upgrade303to304(), new Upgrade304to305(), new Upgrade305to306(), new Upgrade306to307(), new Upgrade307to410(), new Upgrade410to420(), new Upgrade420to421(), new Upgrade421to430(), new Upgrade430to440(), new Upgrade440to441(), new Upgrade441to442(), http://git-wip-us.apache.org/repos/asf/cloudstack/blob/bc636de1/ui/index.jsp ---------------------------------------------------------------------- diff --git a/ui/index.jsp b/ui/index.jsp index 344fbf7..4b601a5 100644 --- a/ui/index.jsp +++ b/ui/index.jsp @@ -29,7 +29,7 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title></title> + <title>Apache CloudStack</title> <link rel="shortcut icon" href="images/cloud.ico" /> <link type="text/css" rel="stylesheet" href="lib/reset.css"/> <link type="text/css" rel="stylesheet" href="css/cloudstack3.css" />
