blob: ca161e29558e90144a2ad4e25cd2ac88c575c739 [file] [log] [blame]
#!/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