4
0
mirror of git://holbrook.no/eth-monitor.git synced 2024-11-16 10:16:48 +01:00
eth-monitor/eth_monitor/run.py

18 lines
363 B
Python
Raw Normal View History

# standard imports
import os
import logging
logg = logging.getLogger(__name__)
def cleanup_run(settings):
if not settings.get('RUN_OUT'):
return
lockfile = os.path.join(settings.get('RUN_DIR'), '.lock')
os.unlink(lockfile)
logg.debug('freed rundir {}'.format(settings.get('RUN_DIR')))
def cleanup(settings):
cleanup_run(settings)