1
0
mirror of https://github.com/altlinux/gpupdate.git synced 2025-03-21 18:50:38 +03:00

Processing module status changed

This commit is contained in:
Valery Sinelnikov 2023-11-17 17:12:46 +04:00
parent 8cfb6f0bb3
commit 6fc059aaac

View File

@ -18,8 +18,7 @@
from abc import ABC
import logging
from util.logging import slogm
from util.logging import log
def check_experimental_enabled(storage):
experimental_enable_flag = 'Software\\BaseALT\\Policies\\GPUpdate\\GlobalExperimental'
@ -53,8 +52,8 @@ def check_module_enabled(storage, module_name):
if flag:
if '1' == str(flag.data):
result = True
if '0' == str(flag.data):
result = False
else:
result = False
return result
@ -64,7 +63,7 @@ def check_enabled(storage, module_name, is_experimental):
result = False
if None == module_enabled or None == module_enabled.data:
if None == module_enabled:
if is_experimental and exp_enabled:
result = True
if not is_experimental: