mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-20 15:10:05 +01:00
```bash
readarray -d '' FILES < <(
git ls-files -z \
':(exclude)po' \
':(exclude)shared/c-rbtree' \
':(exclude)shared/c-list' \
':(exclude)shared/c-siphash' \
':(exclude)shared/c-stdaux' \
':(exclude)shared/n-acd' \
':(exclude)shared/n-dhcp4' \
':(exclude)src/systemd/src' \
':(exclude)shared/systemd/src' \
':(exclude)m4' \
':(exclude)COPYING*'
)
sed \
-e 's/^\(--\|#\| \*\) *\(([cC]) *\)\?Copyright \+\(\(([cC])\) \+\)\?\(\(20\|19\)[0-9][0-9]\) *[-–] *\(\(20\|19\)[0-9][0-9]\) \+\([^ ].*\)$/\1 C1pyright#\5 - \7#\9/' \
-e 's/^\(--\|#\| \*\) *\(([cC]) *\)\?Copyright \+\(\(([cC])\) \+\)\?\(\(20\|19\)[0-9][0-9]\) *[,] *\(\(20\|19\)[0-9][0-9]\) \+\([^ ].*\)$/\1 C2pyright#\5, \7#\9/' \
-e 's/^\(--\|#\| \*\) *\(([cC]) *\)\?Copyright \+\(\(([cC])\) \+\)\?\(\(20\|19\)[0-9][0-9]\) \+\([^ ].*\)$/\1 C3pyright#\5#\7/' \
-e 's/^Copyright \(\(20\|19\)[0-9][0-9]\) \+\([^ ].*\)$/C4pyright#\1#\3/' \
-i \
"${FILES[@]}"
echo ">>> untouched Copyright lines"
git grep Copyright "${FILES[@]}"
echo ">>> Copyright lines with unusual extra"
git grep '\<C[0-9]pyright#' "${FILES[@]}" | grep -i reserved
sed \
-e 's/\<C[0-9]pyright#\([^#]*\)#\(.*\)$/Copyright (C) \1 \2/' \
-i \
"${FILES[@]}"
```
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/298
66 lines
1.9 KiB
Lua
Executable file
66 lines
1.9 KiB
Lua
Executable file
#!/usr/bin/env lua
|
|
-- SPDX-License-Identifier: GPL-2.0+
|
|
--
|
|
-- Copyright (C) 2015 Red Hat, Inc.
|
|
--
|
|
|
|
-- Deactivate all active connections (of certain type).
|
|
-- 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
|
|
|
|
-- supported connection types
|
|
connection_types = {
|
|
NM.SETTING_VPN_SETTING_NAME,
|
|
NM.SETTING_WIRELESS_SETTING_NAME,
|
|
NM.SETTING_WIRED_SETTING_NAME,
|
|
NM.SETTING_BOND_SETTING_NAME,
|
|
NM.SETTING_BRIDGE_SETTING_NAME,
|
|
NM.SETTING_TEAM_SETTING_NAME,
|
|
NM.SETTING_INFINIBAND_SETTING_NAME,
|
|
NM.SETTING_PPPOE_SETTING_NAME,
|
|
NM.SETTING_ADSL_SETTING_NAME,
|
|
NM.SETTING_BLUETOOTH_SETTING_NAME,
|
|
NM.SETTING_WIMAX_SETTING_NAME,
|
|
NM.SETTING_OLPC_MESH_SETTING_NAME,
|
|
NM.SETTING_GENERIC_SETTING_NAME,
|
|
}
|
|
|
|
function known_ctype(ctype, types)
|
|
for _,v in ipairs(types) do
|
|
if v == ctype then return true end
|
|
end
|
|
return false
|
|
end
|
|
|
|
---------------------------
|
|
-- Main code starts here --
|
|
---------------------------
|
|
-- parse command-line arguments
|
|
local ctype = ...
|
|
if (ctype and not known_ctype(ctype, connection_types)) then
|
|
print(string.format("Usage: %s [<type>]", arg[0]:gsub(".*/","")))
|
|
print("Allowed types:", table.concat(connection_types, ", "))
|
|
os.exit(1)
|
|
end
|
|
|
|
-- create Client object
|
|
local client = NM.Client.new()
|
|
|
|
-- get active connections
|
|
connections = client:get_active_connections()
|
|
|
|
-- deactivate the connections
|
|
for _, ac in pairs(connections) do
|
|
if not ctype or ctype == ac:get_connection_type() then
|
|
io.stdout:write(string.format("Deactivating %s (%s)", ac:get_id(), ac:get_uuid()))
|
|
ok,err = client:deactivate_connection(ac, nil, nil)
|
|
if ok then io.stdout:write("\27[32m -> succeeded\27[0m\n")
|
|
else io.stdout:write(string.format("\27[31m -> failed\27[0m (%s)\n", err)) end
|
|
end
|
|
end
|
|
|