mirror of
https://github.com/munki/munki.git
synced 2026-01-27 17:39:32 -06:00
Changes to getAdobeCatalogInfo to filter out more language files/language packs from the installs array.
git-svn-id: http://munki.googlecode.com/svn/trunk@711 a4e17f2e-e282-11dd-95e1-755cbddbdd66
This commit is contained in:
@@ -1077,7 +1077,8 @@ def getAdobeCatalogInfo(mountpoint, pkgname=""):
|
||||
uninstalldir = "/Library/Application Support/Adobe/Uninstall"
|
||||
for payload in cataloginfo.get('payloads', []):
|
||||
if 'AdobeCode' in payload:
|
||||
if "LangPack" in payload.get("display_name"):
|
||||
if ("LangPack" in payload.get("display_name") or
|
||||
"Language Files" in payload.get("display_name")):
|
||||
# skip Language Packs
|
||||
continue
|
||||
dbfile = payload['AdobeCode'] + ".db"
|
||||
|
||||
Reference in New Issue
Block a user