oh gorram it.
This commit is contained in:
parent
a79802afa1
commit
e091d94f91
@ -338,10 +338,12 @@ def daemonMgr():
|
||||
|
||||
def main():
|
||||
self_pidfile = '/tmp/sshsecure.pid'
|
||||
is_running = False
|
||||
# First, check to see if we're already running.
|
||||
# This is where I'd put a psutil call... IF I HAD ONE.
|
||||
if os.path.isfile(self_pidfile):
|
||||
is_running = subprocess.run(['pgrep', '-F', self_pidfile], stdout = subprocess.PIPE)
|
||||
if is_running:
|
||||
if is_running.stdout.decode('utf-8').strip() != '':
|
||||
# We're still running. Exit gracefully.
|
||||
print('We seem to still be running from a past execution; exiting')
|
||||
|
Loading…
Reference in New Issue
Block a user