From c383b8df9b09bb7e9442ae3fb474c8b293f4db7f Mon Sep 17 00:00:00 2001 From: Valery Sinelnikov Date: Thu, 13 Jul 2023 14:20:04 +0400 Subject: [PATCH] Added class to storing registry data for dconf --- gpoa/storage/dconf_registry.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 gpoa/storage/dconf_registry.py diff --git a/gpoa/storage/dconf_registry.py b/gpoa/storage/dconf_registry.py new file mode 100644 index 0000000..acbc3da --- /dev/null +++ b/gpoa/storage/dconf_registry.py @@ -0,0 +1,20 @@ +# +# GPOA - GPO Applier for Linux +# +# Copyright (C) 2019-2023 BaseALT Ltd. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +class Dconf_registry(): + global_registry_dict = dict()