From 34cd2d630d290765d72bc8e1ca632e9e4bd11163 Mon Sep 17 00:00:00 2001 From: Rohit Yadav Date: Mon, 11 Feb 2013 15:21:58 +0530 Subject: [PATCH] CLOUDSTACK-1019: Fix filename from 4201752e Signed-off-by: Rohit Yadav --- setup/bindir/cloud-setup-databases.in | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup/bindir/cloud-setup-databases.in b/setup/bindir/cloud-setup-databases.in index 49786345c5b..8330f35e659 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() -