mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] Do not log migration to stretch in /tmp/. Issue #1280
This commit is contained in:
parent
ad8a290402
commit
c19304dc5c
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ class MyMigration(Migration):
|
||||||
|
|
||||||
def migrate(self):
|
def migrate(self):
|
||||||
|
|
||||||
self.logfile = "/tmp/{}.log".format(self.name)
|
self.logfile = "/var/log/yunohost/{}.log".format(self.name)
|
||||||
|
|
||||||
self.check_assertions()
|
self.check_assertions()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue