mirror of
https://github.com/altlinux/gpupdate.git
synced 2025-11-07 20:24:08 +03:00
48 lines
1.8 KiB
Python
48 lines
1.8 KiB
Python
#
|
|
# Copyright (C) 2019-2020 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 2 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, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
from .applier_frontend import applier_frontend
|
|
from .appliers.control import control
|
|
from util.logging import slogm
|
|
|
|
import logging
|
|
|
|
class control_applier(applier_frontend):
|
|
_registry_branch = 'Software\\BaseALT\\Policies\\Control'
|
|
|
|
def __init__(self, storage):
|
|
self.storage = storage
|
|
self.control_settings = self.storage.filter_hklm_entries('Software\\BaseALT\\Policies\\Control%')
|
|
self.controls = list()
|
|
|
|
def apply(self):
|
|
'''
|
|
Trigger control facility invocation.
|
|
'''
|
|
for setting in self.control_settings:
|
|
valuename = setting.hive_key.rpartition('\\')[2]
|
|
try:
|
|
self.controls.append(control(valuename, int(setting.data)))
|
|
logging.info(slogm('Working with control {}'.format(valuename)))
|
|
except Exception as exc:
|
|
logging.info(slogm('Unable to work with control {}: {}'.format(valuename, exc)))
|
|
#for e in polfile.pol_file.entries:
|
|
# print('{}:{}:{}:{}:{}'.format(e.type, e.data, e.valuename, e.keyname))
|
|
for cont in self.controls:
|
|
cont.set_control_status()
|
|
|