9 lines
193 B
Python
Executable file
9 lines
193 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
import dbus
|
|
|
|
bus = dbus.SystemBus()
|
|
|
|
object = dbus.Interface(bus.get_object("org.chromium.dhcpcd", '/'),
|
|
"org.freedesktop.DBus.Introspectable")
|
|
print object.Introspect()
|