mirror of
https://github.com/munki/munki.git
synced 2026-04-26 06:48:57 -05:00
Add entry to catch SwitchBoard.app in killStupidProcesses
The existing entry to kill off SwitchBoard.app being launched in the loginwindow context did not always work. Adding "/bin/bash /Library/Application Support/Adobe/SwitchBoard/SwitchBoard.app/Contents/MacOS/switchboard.sh" resolves this issue.
This commit is contained in:
@@ -475,7 +475,8 @@ def killStupidProcesses():
|
||||
stupid_processes = ["Adobe AIR Installer",
|
||||
"Adobe AIR Application Installer",
|
||||
"InstallAdobeHelp",
|
||||
"open -a /Library/Application Support/Adobe/SwitchBoard/SwitchBoard.app"]
|
||||
"open -a /Library/Application Support/Adobe/SwitchBoard/SwitchBoard.app",
|
||||
"/bin/bash /Library/Application Support/Adobe/SwitchBoard/SwitchBoard.app/Contents/MacOS/switchboard.sh"]
|
||||
|
||||
for procname in stupid_processes:
|
||||
pid = utils.getPIDforProcessName(procname)
|
||||
|
||||
Reference in New Issue
Block a user