11 lines
269 B
Python
Executable file
11 lines
269 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
import sys, dbus, flimflam
|
|
|
|
flim = flimflam.FlimFlam(dbus.SystemBus())
|
|
|
|
if (len(sys.argv) < 2):
|
|
print "Service order is %s" % flim.GetServiceOrder()
|
|
else:
|
|
orders = flim.SetServiceOrder(sys.argv[1])
|
|
print "Service order %s => %s" % orders
|