1
0
mirror of https://github.com/altlinux/gpupdate.git synced 2024-10-26 10:25:07 +03:00

Added new logs for using yandex_applier

This commit is contained in:
Valery Sinelnikov 2022-10-10 17:57:20 +04:00
parent cb6bc1f280
commit d35dd5433d
4 changed files with 17 additions and 5 deletions

View File

@ -72,7 +72,7 @@ class yandex_applier(applier_frontend):
json.dump(dict_item_to_list(self.policies_json), f)
logdata = dict()
logdata['destfile'] = destfile
log('D97', logdata)
log('D185', logdata)
destfilerec = os.path.join(self.__recommended_policies_path, 'policies.json')
os.makedirs(self.__recommended_policies_path, exist_ok=True)
@ -80,7 +80,7 @@ class yandex_applier(applier_frontend):
json.dump(dict_item_to_list(recommended__json), f)
logdata = dict()
logdata['destfilerec'] = destfilerec
log('D97', logdata)
log('D185', logdata)
def apply(self):
@ -88,11 +88,11 @@ class yandex_applier(applier_frontend):
All actual job done here.
'''
if self.__module_enabled:
print("log('D95'")
log('D183')
self.create_dict(self.yandex_keys)
self.machine_apply()
else:
print("log('D96'")
log('D184')
def get_valuename_typeint(self):
'''
@ -162,7 +162,7 @@ class yandex_applier(applier_frontend):
logdata = dict()
logdata['Exception'] = exc
logdata['keyname'] = it_data.keyname
print("log('????'", logdata)
log('D178', logdata)
try:
self.policies_json = counts['']
except:

View File

@ -753,6 +753,15 @@ msgstr "Применение настроек сетевых каталогов
msgid "Apply network share data action failed"
msgstr "Не удалось применить действие с данными общего сетевого ресурса"
msgid "Running yandex_applier for machine"
msgstr "Запуск yandex_applier для машины"
msgid "Yandex_applier for machine will not be started"
msgstr "Yandex_applier для машины не запустится"
msgid "Wrote YandexBrowser preferences to"
msgstr "Запись настройки Яндекс Браузера в"
# Debug_end
# Warning

View File

@ -287,6 +287,9 @@ def debug_code(code):
debug_ids[180] = 'Running networkshare applier for machine'
debug_ids[181] = 'Running networkshare applier for machine will not be started'
debug_ids[182] = 'Apply network share data action failed'
debug_ids[183] = 'Running yandex_applier for machine'
debug_ids[184] = 'Yandex_applier for machine will not be started'
debug_ids[185] = 'Wrote YandexBrowser preferences to'
return debug_ids.get(code, 'Unknown debug code')

0
tools/parsing_chrom_admx_intvalues.py Normal file → Executable file
View File