| Index: test/create-profile
|
| diff --git a/test/create-profile b/test/create-profile
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..c2132451859674d12b08af77d34e9d14f22bdc97
|
| --- /dev/null
|
| +++ b/test/create-profile
|
| @@ -0,0 +1,11 @@
|
| +#!/usr/bin/python
|
| +
|
| +import dbus, flimflam, string, sys
|
| +
|
| +if (len(sys.argv) < 2):
|
| + print "Profile pathname required"
|
| + sys.exit(1)
|
| +
|
| +flim = flimflam.FlimFlam(dbus.SystemBus())
|
| +profile = flim.CreateProfile(sys.argv[1])
|
| +print "New profile created at %s" % (profile.object_path)
|
|
|