2015-02-02 17:55:59 +01:00
|
|
|
#!/usr/bin/env lua
|
2019-09-10 11:19:01 +02:00
|
|
|
-- SPDX-License-Identifier: GPL-2.0+
|
2015-02-02 17:55:59 +01:00
|
|
|
--
|
2019-10-01 09:20:35 +02:00
|
|
|
-- Copyright (C) 2015 Red Hat, Inc.
|
2015-02-02 17:55:59 +01:00
|
|
|
--
|
2019-09-25 13:13:40 +02:00
|
|
|
|
2015-02-02 17:55:59 +01:00
|
|
|
-- This example gets basic information about NetworkManager.
|
|
|
|
|
-- The example uses libnm library using GObject introspection via Lua lgi module.
|
|
|
|
|
-- Most distribution ship the module as lua-lgi package.
|
|
|
|
|
-- libnm guide: https://developer.gnome.org/libnm/1.0/
|
|
|
|
|
-- Lua-lgi guide: https://github.com/pavouk/lgi/blob/master/docs/guide.md
|
|
|
|
|
|
|
|
|
|
local lgi = require 'lgi'
|
|
|
|
|
local NM = lgi.NM
|
|
|
|
|
|
|
|
|
|
---------------------------
|
|
|
|
|
-- Main code starts here --
|
|
|
|
|
---------------------------
|
|
|
|
|
-- get client object
|
|
|
|
|
client = NM.Client.new()
|
|
|
|
|
|
|
|
|
|
print("Basic NM properties:")
|
|
|
|
|
print("====================")
|
|
|
|
|
print("NM version: ", client.version)
|
|
|
|
|
print("NM state: ", client.state)
|
|
|
|
|
print("NM startup: ", client.startup)
|
|
|
|
|
print("Networking enabled: ", client.networking_enabled)
|
|
|
|
|
print("Wireless enabled: ", client.wireless_enabled)
|
|
|
|
|
print("Wireless HW enabled: ", client.wireless_hardware_enabled)
|
|
|
|
|
print("WWAN enabled: ", client.wwan_enabled)
|
|
|
|
|
print("WWAN HW enabled: ", client.wwan_hardware_enabled)
|
|
|
|
|
print("# devices: ", #client.devices)
|
|
|
|
|
print("# connections: ", #client.connections)
|
|
|
|
|
print("# active connections:", #client.active_connections)
|
|
|
|
|
|