1
0
mirror of https://github.com/altlinux/gpupdate.git synced 2025-03-09 08:58:37 +03:00

Fixed sorting of scripts

Reported-by: Sergey Sysoev <sysoevsa@surgut.gazprom.ru>
This commit is contained in:
Valery Sinelnikov 2024-06-27 16:42:29 +04:00
parent 5ee05df574
commit 84e1340362

View File

@ -371,13 +371,13 @@ class Dconf_registry():
def get_scripts(cls, sid, action):
action_scripts = list()
for part in cls.scripts:
if action == 'LOGON':
if action == 'LOGON' and part.action == 'LOGON':
action_scripts.append(part)
elif action == 'LOGOFF':
elif action == 'LOGOFF' and part.action == 'LOGOFF':
action_scripts.append(part)
elif action == 'STARTUP':
elif action == 'STARTUP' and part.action == 'STARTUP':
action_scripts.append(part)
elif action == 'SHUTDOWN':
elif action == 'SHUTDOWN' and part.action == 'SHUTDOWN':
action_scripts.append(part)
return action_scripts