mirror of
https://github.com/munki/munki.git
synced 2026-05-04 19:39:22 -05:00
Don't set overall restartflag to False if a nopkg item doesn't require restart. Thanks to @chymb
This commit is contained in:
@@ -303,7 +303,7 @@ def install_with_info(
|
||||
retcode = -1
|
||||
# nopkg (Packageless) install
|
||||
elif installer_type == "nopkg":
|
||||
restartflag = requires_restart(item)
|
||||
restartflag = restartflag or requires_restart(item)
|
||||
# unknown installer_type
|
||||
elif installer_type != "":
|
||||
# we've encountered an installer type
|
||||
|
||||
Reference in New Issue
Block a user