Home | History | Annotate | Download | only in test-scripts
      1 #!/usr/bin/python
      2 
      3 import sys, dbus, flimflam
      4 
      5 flim = flimflam.FlimFlam(dbus.SystemBus())
      6 
      7 if (len(sys.argv) < 2):
      8     print "Service order is %s" % flim.GetServiceOrder()
      9 else:
     10     orders = flim.SetServiceOrder(sys.argv[1])
     11     print "Service order %s => %s" % orders
     12