mirror of
git://holbrook.no/eth-monitor.git
synced 2024-11-16 10:16:48 +01:00
18 lines
363 B
Python
18 lines
363 B
Python
|
# 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)
|