vagrant: Cleanup for obsolete log files

Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
James Valleroy 2018-12-26 09:16:32 -05:00 committed by Sunil Mohan Adapa
parent f1d475bb4e
commit da08b8bd02
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

View File

@ -27,11 +27,3 @@ try:
os.remove('data/var/lib/plinth/plinth.sqlite3')
except OSError:
pass
# Truncate status.log
with open('data/var/log/plinth/status.log', 'w') as status_log:
status_log.truncate()
# Truncate access.log
with open('data/var/log/plinth/access.log', 'w') as access_log:
access_log.truncate()