[cw-ctl] use default `mkdtemp()` behaviour to store backup file internally
When using `mkdtemp(dir=instbkdir)`, a dedicated system user which hasn't the
permissions to write in /var/lib/cubicweb/instances/$INSTANCE/backup will not
be able to run the db-dump command.
--- a/server/migractions.py Fri Jan 28 11:21:45 2011 +0100
+++ b/server/migractions.py Fri Jan 28 15:23:47 2011 +0100
@@ -183,7 +183,7 @@
open(backupfile,'w').close() # kinda lock
os.chmod(backupfile, 0600)
# backup
- tmpdir = tempfile.mkdtemp(dir=instbkdir)
+ tmpdir = tempfile.mkdtemp()
try:
for source in repo.sources:
try: