├── .gitignore ├── Adobe ├── CFBundleVersionSmartGroupTemplate.xml ├── CreativeCloudApp.jss.recipe ├── CreativeCloudApp.munki.recipe ├── CreativeCloudApp.pkg.recipe ├── CreativeCloudAppNoUninstall.munki.recipe ├── CreativeCloudAppSerialized.munki.recipe ├── CreativeCloudAppSerialized.pkg.recipe ├── CreativeCloudBuildModifier.py ├── CreativeCloudFeed.py ├── CreativeCloudPackager.py ├── CreativeCloudVersioner.py ├── PolicyTemplate.xml ├── SmartGroupTemplate.xml ├── UninstallPolicyTemplate.xml ├── UninstallSmartGroupTemplate.xml └── examples │ ├── AcrobatDC17.jss.recipe │ ├── AcrobatDC17.munki.recipe │ ├── AcrobatDCSmartGroupTemplate.xml │ ├── AdobeAuditionCC2017.jss.recipe │ ├── AdobePhotoshopCC2017.munki.recipe │ ├── AdobePhotoshopCC2017.pkg.recipe │ ├── PolicyTemplate.xml │ ├── README.md │ └── SmartGroupTemplate.xml ├── LICENSE ├── README.md ├── list_ccp_feed └── whats_my_org.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/.gitignore -------------------------------------------------------------------------------- /Adobe/CFBundleVersionSmartGroupTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/CFBundleVersionSmartGroupTemplate.xml -------------------------------------------------------------------------------- /Adobe/CreativeCloudApp.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/CreativeCloudApp.jss.recipe -------------------------------------------------------------------------------- /Adobe/CreativeCloudApp.munki.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/CreativeCloudApp.munki.recipe -------------------------------------------------------------------------------- /Adobe/CreativeCloudApp.pkg.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/CreativeCloudApp.pkg.recipe -------------------------------------------------------------------------------- /Adobe/CreativeCloudAppNoUninstall.munki.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/CreativeCloudAppNoUninstall.munki.recipe -------------------------------------------------------------------------------- /Adobe/CreativeCloudAppSerialized.munki.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/CreativeCloudAppSerialized.munki.recipe -------------------------------------------------------------------------------- /Adobe/CreativeCloudAppSerialized.pkg.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/CreativeCloudAppSerialized.pkg.recipe -------------------------------------------------------------------------------- /Adobe/CreativeCloudBuildModifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/CreativeCloudBuildModifier.py -------------------------------------------------------------------------------- /Adobe/CreativeCloudFeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/CreativeCloudFeed.py -------------------------------------------------------------------------------- /Adobe/CreativeCloudPackager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/CreativeCloudPackager.py -------------------------------------------------------------------------------- /Adobe/CreativeCloudVersioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/CreativeCloudVersioner.py -------------------------------------------------------------------------------- /Adobe/PolicyTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/PolicyTemplate.xml -------------------------------------------------------------------------------- /Adobe/SmartGroupTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/SmartGroupTemplate.xml -------------------------------------------------------------------------------- /Adobe/UninstallPolicyTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/UninstallPolicyTemplate.xml -------------------------------------------------------------------------------- /Adobe/UninstallSmartGroupTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/UninstallSmartGroupTemplate.xml -------------------------------------------------------------------------------- /Adobe/examples/AcrobatDC17.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/examples/AcrobatDC17.jss.recipe -------------------------------------------------------------------------------- /Adobe/examples/AcrobatDC17.munki.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/examples/AcrobatDC17.munki.recipe -------------------------------------------------------------------------------- /Adobe/examples/AcrobatDCSmartGroupTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/examples/AcrobatDCSmartGroupTemplate.xml -------------------------------------------------------------------------------- /Adobe/examples/AdobeAuditionCC2017.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/examples/AdobeAuditionCC2017.jss.recipe -------------------------------------------------------------------------------- /Adobe/examples/AdobePhotoshopCC2017.munki.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/examples/AdobePhotoshopCC2017.munki.recipe -------------------------------------------------------------------------------- /Adobe/examples/AdobePhotoshopCC2017.pkg.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/examples/AdobePhotoshopCC2017.pkg.recipe -------------------------------------------------------------------------------- /Adobe/examples/PolicyTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/examples/PolicyTemplate.xml -------------------------------------------------------------------------------- /Adobe/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/examples/README.md -------------------------------------------------------------------------------- /Adobe/examples/SmartGroupTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/Adobe/examples/SmartGroupTemplate.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/README.md -------------------------------------------------------------------------------- /list_ccp_feed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/list_ccp_feed -------------------------------------------------------------------------------- /whats_my_org.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosen/ccp-recipes/HEAD/whats_my_org.sh --------------------------------------------------------------------------------