diff options
Diffstat (limited to 'examples/python/gi')
| -rw-r--r-- | examples/python/gi/Makefile.in | 1 | ||||
| -rwxr-xr-x | examples/python/gi/add_connection.py | 2 | ||||
| -rwxr-xr-x | examples/python/gi/device-state-ip4config.py | 2 | ||||
| -rwxr-xr-x | examples/python/gi/firewall-zone.py | 2 | ||||
| -rwxr-xr-x | examples/python/gi/get-active-connections.py | 2 | ||||
| -rwxr-xr-x | examples/python/gi/get_ips.py | 2 | ||||
| -rwxr-xr-x | examples/python/gi/list-connections.py | 2 | ||||
| -rwxr-xr-x | examples/python/gi/show-wifi-networks.py | 2 | ||||
| -rwxr-xr-x | examples/python/gi/update-ip4-method.py | 2 |
9 files changed, 17 insertions, 0 deletions
diff --git a/examples/python/gi/Makefile.in b/examples/python/gi/Makefile.in index 18e395e9..21384364 100644 --- a/examples/python/gi/Makefile.in +++ b/examples/python/gi/Makefile.in @@ -253,6 +253,7 @@ LOG_DRIVER = @LOG_DRIVER@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ diff --git a/examples/python/gi/add_connection.py b/examples/python/gi/add_connection.py index bb1163db..492d66d1 100755 --- a/examples/python/gi/add_connection.py +++ b/examples/python/gi/add_connection.py @@ -29,6 +29,8 @@ # https://developer.gnome.org/NetworkManager/1.0/ref-settings.html # +import gi +gi.require_version('NM', '1.0') from gi.repository import GLib, NM import sys, uuid diff --git a/examples/python/gi/device-state-ip4config.py b/examples/python/gi/device-state-ip4config.py index 1a6f7dec..2a4a6221 100755 --- a/examples/python/gi/device-state-ip4config.py +++ b/examples/python/gi/device-state-ip4config.py @@ -21,6 +21,8 @@ # import sys +import gi +gi.require_version('NM', '1.0') from gi.repository import GLib, NM # diff --git a/examples/python/gi/firewall-zone.py b/examples/python/gi/firewall-zone.py index ed9e5910..a56760ae 100755 --- a/examples/python/gi/firewall-zone.py +++ b/examples/python/gi/firewall-zone.py @@ -20,6 +20,8 @@ # import sys +import gi +gi.require_version('NM', '1.0') from gi.repository import GLib, NM # diff --git a/examples/python/gi/get-active-connections.py b/examples/python/gi/get-active-connections.py index 55ba2d81..22c9eb4a 100755 --- a/examples/python/gi/get-active-connections.py +++ b/examples/python/gi/get-active-connections.py @@ -21,6 +21,8 @@ # This example lists currently active connections +import gi +gi.require_version('NM', '1.0') from gi.repository import GLib, NM if __name__ == "__main__": diff --git a/examples/python/gi/get_ips.py b/examples/python/gi/get_ips.py index 690bd6ef..77e1d171 100755 --- a/examples/python/gi/get_ips.py +++ b/examples/python/gi/get_ips.py @@ -21,6 +21,8 @@ # import sys, socket +import gi +gi.require_version('NM', '1.0') from gi.repository import GLib, NM # diff --git a/examples/python/gi/list-connections.py b/examples/python/gi/list-connections.py index 34b559fc..32ea70f5 100755 --- a/examples/python/gi/list-connections.py +++ b/examples/python/gi/list-connections.py @@ -20,6 +20,8 @@ # Copyright 2012 - 2014 Red Hat, Inc. # +import gi +gi.require_version('NM', '1.0') from gi.repository import NM # This example asks settings service for all configured connections. diff --git a/examples/python/gi/show-wifi-networks.py b/examples/python/gi/show-wifi-networks.py index 7f3bd2db..a8bfbbfe 100755 --- a/examples/python/gi/show-wifi-networks.py +++ b/examples/python/gi/show-wifi-networks.py @@ -21,6 +21,8 @@ # import locale +import gi +gi.require_version('NM', '1.0') from gi.repository import NM # diff --git a/examples/python/gi/update-ip4-method.py b/examples/python/gi/update-ip4-method.py index 983578cf..5e058031 100755 --- a/examples/python/gi/update-ip4-method.py +++ b/examples/python/gi/update-ip4-method.py @@ -27,6 +27,8 @@ # https://developer.gnome.org/NetworkManager/1.0/ref-settings.html # +import gi +gi.require_version('NM', '1.0') from gi.repository import GLib, NM import sys, socket |