diff options
| author | Michael Biebl <biebl@debian.org> | 2022-10-04 00:56:46 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2022-10-04 00:56:46 +0200 |
| commit | 3612e6355f3f40d264ec4657547761069baa5430 (patch) | |
| tree | 768e4f5b37b66f540dd7030aa2eaff2ac7bb0168 /examples/python/dbus/checkpoint.py | |
| parent | 7e9f00a3be8f65535e6620b344443ec4d403212b (diff) | |
| parent | 6f7fcde10e47d8af865af336becf1fd8a446e62e (diff) | |
Merge tag 'debian/1.40.0-1' into debian/bullseye-backports
network-manager Debian release 1.40.0-1
Diffstat (limited to 'examples/python/dbus/checkpoint.py')
| -rwxr-xr-x | examples/python/dbus/checkpoint.py | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/examples/python/dbus/checkpoint.py b/examples/python/dbus/checkpoint.py new file mode 100755 index 00000000..869bfce7 --- /dev/null +++ b/examples/python/dbus/checkpoint.py @@ -0,0 +1,71 @@ +#!/usr/bin/env python +# SPDX-License-Identifier: GPL-2.0-or-later +# +# Copyright (C) 2016 Red Hat, Inc. +# +# This example takes a list of device interface names as a parameter +# and tells NetworkManager to create a checkpoint on those devices. It +# is then possible to restore or destroy the checkpoint. + +# Get a proxy for the base NetworkManager object + +import dbus, sys + +bus = dbus.SystemBus() +proxy = bus.get_object( + "org.freedesktop.NetworkManager", "/org/freedesktop/NetworkManager" +) +manager = dbus.Interface(proxy, "org.freedesktop.NetworkManager") +allDevs = manager.GetDevices() + + +def Usage(): + print("Usage: %s <ROLLBACK-INTERVAL> [INTERFACE]..." % sys.argv[0]) + sys.exit(1) + + +def GetDevicePath(ifname): + for dev in allDevs: + dev_proxy = bus.get_object("org.freedesktop.NetworkManager", dev) + prop_iface = dbus.Interface(dev_proxy, "org.freedesktop.DBus.Properties") + interface = prop_iface.Get("org.freedesktop.NetworkManager.Device", "Interface") + if interface == ifname: + return dev + return + + +if len(sys.argv) < 2: + Usage() + +try: + interval = int(sys.argv[1]) +except ValueError: + Usage() + +devList = [] + +for arg in sys.argv[2:]: + path = GetDevicePath(arg) + if path is None: + raise Exception("NetworkManager knows nothing about %s" % arg) + else: + devList.append(path) + +checkpoint = manager.CheckpointCreate(devList, interval, 1) +# DESTROY_ALL + +try: + # Workaround for Python2 + input = raw_input +except NameError: + pass + +choice = input("Do you want to rollback [y/n]? ").lower() +if choice == "y": + print("Rollback checkpoint") + results = manager.CheckpointRollback(checkpoint) + for d in results: + print(" - device %s: result %u" % (d, results[d])) +else: + print("Destroy checkpoint") + manager.CheckpointDestroy(checkpoint) |