2020-03-10 02:43:18 +00:00
|
|
|
"""Onionr - Private P2P Communication.
|
2019-08-06 03:10:21 +00:00
|
|
|
|
2020-03-10 02:43:18 +00:00
|
|
|
cleanup run files
|
2019-11-20 10:52:50 +00:00
|
|
|
"""
|
2020-03-10 02:43:18 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import filepaths
|
2019-11-20 10:52:50 +00:00
|
|
|
"""
|
2019-08-06 03:10:21 +00:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-11-20 10:52:50 +00:00
|
|
|
"""
|
2020-03-10 02:43:18 +00:00
|
|
|
|
2019-11-20 10:52:50 +00:00
|
|
|
|
|
|
|
def _safe_remove(path):
|
2019-07-30 05:19:22 +00:00
|
|
|
try:
|
2019-11-20 10:52:50 +00:00
|
|
|
os.remove(path)
|
2019-07-30 05:19:22 +00:00
|
|
|
except FileNotFoundError:
|
2019-11-20 10:52:50 +00:00
|
|
|
pass
|
|
|
|
|
2020-03-10 02:43:18 +00:00
|
|
|
|
2019-11-20 10:52:50 +00:00
|
|
|
def delete_run_files():
|
2020-03-10 02:43:18 +00:00
|
|
|
"""Delete run files, do not error if not found.
|
|
|
|
|
|
|
|
Test: test_cleanup.py
|
|
|
|
"""
|
|
|
|
_safe_remove(filepaths.public_API_host_file)
|
|
|
|
_safe_remove(filepaths.private_API_host_file)
|
|
|
|
_safe_remove(filepaths.daemon_mark_file)
|
|
|
|
_safe_remove(filepaths.lock_file)
|