1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-31 11:02:33 +01:00

Don't start the daemon if it's already running

This commit is contained in:
David Paleino
2012-02-08 20:34:21 +01:00
parent 96b07799e0
commit b3c614871a

View File

@@ -1764,6 +1764,11 @@ def main(argv):
# quit, this should be the only option specified
sys.exit(0)
if os.path.exists(wpath.pidfile):
print 'It seems like the daemon is already running.'
print 'If it is not, please remove %s and try again.' % wpath.pidfile
sys.exit(1)
if not os.path.exists(wpath.networks):
os.makedirs(wpath.networks)