1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-20 12:58:07 +01:00

Added a bunch of bug fixes from the experimental branch to the testing branch.

Added disconnect script feature and executing script in usermode feature to testing branch
This commit is contained in:
imdano
2007-08-15 07:25:10 +00:00
parent bbf32b3b41
commit 197f6913af

View File

@@ -10,4 +10,7 @@ command = ''
for stuff in sys.argv[1:]:
command = command + ' ' + stuff
print 'command = ',command
print misc.Run(command)
pid = os.fork()
print 'hey'
if not pid:
misc.Run(command)