
These SPDX license identifiers are deprecated ([1]). Update them. [1] https://spdx.org/licenses/ sed \ -e '1 s%^/\* SPDX-License-Identifier: \(GPL-2.0\|LGPL-2.1\)+ \*/$%/* SPDX-License-Identifier: \1-or-later */%' \ -e '1,2 s%^\(--\|#\|//\) SPDX-License-Identifier: \(GPL-2.0\|LGPL-2.1\)+$%\1 SPDX-License-Identifier: \2-or-later%' \ -i \ $(git grep -l SPDX-License-Identifier -- \ ':(exclude)shared/c-*/' \ ':(exclude)shared/n-*/' \ ':(exclude)shared/systemd/src' \ ':(exclude)src/systemd/src')
37 lines
888 B
Python
Executable File
37 lines
888 B
Python
Executable File
#!/usr/bin/env python
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Copyright (C) 2014 Red Hat, Inc.
|
|
#
|
|
|
|
# This example lists all devices, both real and placeholder ones
|
|
|
|
import gi
|
|
|
|
gi.require_version("NM", "1.0")
|
|
from gi.repository import NM
|
|
|
|
if __name__ == "__main__":
|
|
client = NM.Client.new(None)
|
|
devices = client.get_all_devices()
|
|
|
|
print "Real devices"
|
|
print "------------"
|
|
for d in devices:
|
|
if d.is_real():
|
|
print "%s (%s): %s" % (
|
|
d.get_iface(),
|
|
d.get_type_description(),
|
|
d.get_state(),
|
|
)
|
|
|
|
print "\nUnrealized/placeholder devices"
|
|
print "------------------------------"
|
|
for d in devices:
|
|
if not d.is_real():
|
|
print "%s (%s): %s" % (
|
|
d.get_iface(),
|
|
d.get_type_description(),
|
|
d.get_state(),
|
|
)
|