From da08b8bd02b157b057f25fdaf693c69efe560461 Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Wed, 26 Dec 2018 09:16:32 -0500 Subject: [PATCH] vagrant: Cleanup for obsolete log files Signed-off-by: James Valleroy --- post-box-destroy.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/post-box-destroy.py b/post-box-destroy.py index 90bba379a..c004c2c23 100755 --- a/post-box-destroy.py +++ b/post-box-destroy.py @@ -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()