From c837176d190a4b6546f833907bc971637a83031b Mon Sep 17 00:00:00 2001 From: Greg Neagle Date: Wed, 18 Apr 2018 13:47:53 -0700 Subject: [PATCH] Add 'featured' to the list of key/values to copy from the previous pkginfo. Fixes #815. --- code/client/munkiimport | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/client/munkiimport b/code/client/munkiimport index ceaec96a..a23d75f3 100755 --- a/code/client/munkiimport +++ b/code/client/munkiimport @@ -433,7 +433,8 @@ def main(): 'developer', 'icon_name', 'unused_software_removal_info', - 'localized_strings']: + 'localized_strings', + 'featured']: if key in matchingpkginfo: print 'Copying %s: %s' % (key, matchingpkginfo[key]) pkginfo[key] = matchingpkginfo[key]