mirror of
https://github.com/openSUSE/snapper.git
synced 2026-02-06 18:46:06 +01:00
14 lines
305 B
Python
Executable File
14 lines
305 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import dbus
|
|
|
|
bus = dbus.SystemBus()
|
|
|
|
snapper = dbus.Interface(bus.get_object('org.opensuse.Snapper', '/org/opensuse/Snapper'),
|
|
dbus_interface='org.opensuse.Snapper')
|
|
|
|
|
|
data = { "NUMBER_CLEANUP" : "yes", "NUMBER_LIMIT" : "10" }
|
|
|
|
snapper.SetConfig("root", data)
|