| Index: test/pop-profile
|
| diff --git a/test/pop-profile b/test/pop-profile
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..2263a4a7cd727081527bb13b09a9e41e46f2f4e8
|
| --- /dev/null
|
| +++ b/test/pop-profile
|
| @@ -0,0 +1,13 @@
|
| +#!/usr/bin/python
|
| +
|
| +import dbus, flimflam, string, sys
|
| +
|
| +if (len(sys.argv) > 2):
|
| + print "usage: %s [identifier]" % sys.argv[0]
|
| + sys.exit(1)
|
| +
|
| +flim = flimflam.FlimFlam(dbus.SystemBus())
|
| +if (len(sys.argv) == 2):
|
| + flim.PopProfile(sys.argv[1])
|
| +else:
|
| + flim.PopAnyProfile()
|
|
|