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