Commit 53852e23 authored by Marco Mariani's avatar Marco Mariani

renamed dump file

parent c23bb65f
...@@ -221,7 +221,7 @@ class ExportRecipe(GenericBaseRecipe): ...@@ -221,7 +221,7 @@ class ExportRecipe(GenericBaseRecipe):
%(bin)s/pg_dump \\ %(bin)s/pg_dump \\
--host=%(pgdata-directory)s \\ --host=%(pgdata-directory)s \\
--format=custom \\ --format=custom \\
--file=%(backup-directory)s/backup.dump \\ --file=%(backup-directory)s/database.dump \\
%(dbname)s %(dbname)s
""" % self.options) """ % self.options)
self.createExecutable(wrapper, content=content) self.createExecutable(wrapper, content=content)
...@@ -249,7 +249,7 @@ class ImportRecipe(GenericBaseRecipe): ...@@ -249,7 +249,7 @@ class ImportRecipe(GenericBaseRecipe):
--clean \\ --clean \\
--no-owner \\ --no-owner \\
--no-acl \\ --no-acl \\
%(backup-directory)s/backup.dump %(backup-directory)s/database.dump
""" % self.options) """ % self.options)
self.createExecutable(wrapper, content=content) self.createExecutable(wrapper, content=content)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment