Updated Branches: refs/heads/master 0895c3400 -> 34cd2d630
CLOUDSTACK-1019: Fix filename from 4201752e Signed-off-by: Rohit Yadav <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/34cd2d63 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/34cd2d63 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/34cd2d63 Branch: refs/heads/master Commit: 34cd2d630d290765d72bc8e1ca632e9e4bd11163 Parents: 0895c34 Author: Rohit Yadav <[email protected]> Authored: Mon Feb 11 15:21:58 2013 +0530 Committer: Rohit Yadav <[email protected]> Committed: Mon Feb 11 15:22:46 2013 +0530 ---------------------------------------------------------------------- setup/bindir/cloud-setup-databases.in | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/34cd2d63/setup/bindir/cloud-setup-databases.in ---------------------------------------------------------------------- diff --git a/setup/bindir/cloud-setup-databases.in b/setup/bindir/cloud-setup-databases.in index 4978634..8330f35 100755 --- a/setup/bindir/cloud-setup-databases.in +++ b/setup/bindir/cloud-setup-databases.in @@ -1,6 +1,5 @@ #!/usr/bin/python # -*- coding: utf-8 -*- - # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -212,7 +211,7 @@ for full help ""), ) - for f in ["create-database","create-schema", "create-database-premium","create-schema-premium", "create-schema-view", "4.1-new-db-schema.sql"]: + for f in ["create-database","create-schema", "create-database-premium","create-schema-premium", "create-schema-view", "4.1-new-db-schema"]: p = os.path.join(self.dbFilesPath,"%s.sql"%f) if not os.path.exists(p): continue text = file(p).read() @@ -603,4 +602,3 @@ for example: if __name__ == "__main__": o = DBDeployer() o.run() -
