├── .gitignore ├── Exercise3a └── Firefox-testing.jss.recipe ├── Exercise5b ├── Firefox-autoupdate.jss.recipe ├── PolicyTemplate-autoupdate.xml └── SmartGroupTemplate-autoupdate.xml ├── Exercise5c ├── auto_update_magic.sh ├── com.jamf.jamfnation.auto_update_magic.plist ├── create_pkg.sh └── pkg_scripts │ ├── postinstall │ └── preinstall ├── Exercise6a ├── Adobe Flash Player-autoupdate.jss.recipe ├── AdobeFlashPlayerSmartGroupTemplate-autoupdate.xml ├── Google Chrome-autoupdate.jss.recipe ├── Oracle Java 7-autoupdate.jss.recipe ├── Oracle Java 8-autoupdate.jss.recipe ├── OracleJava7SmartGroupTemplate-autoupdate.xml └── OracleJava8SmartGroupTemplate-autoupdate.xml ├── Exercise6b ├── Adobe Flash Player-testing.jss.recipe ├── Google Chrome-testing.jss.recipe ├── Oracle Java 7-testing.jss.recipe ├── Oracle Java 8-testing.jss.recipe └── PolicyTemplate-testing.xml ├── Exercise6c ├── PolicyTemplate-selfservice.xml ├── Slack-selfservice.jss.recipe └── TextWrangler-selfservice.jss.recipe ├── Exercise6d ├── 1Password-selfservice.jss.recipe └── LicensedAppPolicyTemplate-selfservice.xml ├── LICENSE ├── README-images ├── cdp-not-synced.png ├── cdp-setting.png ├── configure-jssimporter.png ├── email-notification.png ├── firefox-download.png ├── firefox-install.png ├── firefox-jss-policy.png ├── firefox-pkg-inspection.png ├── mantra.png ├── notifications.png ├── policy-looping-01.png ├── policy-looping-02.png ├── schedule.png ├── sw-dist-cycle-01.png ├── sw-dist-cycle-02.png ├── sw-dist-cycle-03.png ├── sw-dist-cycle-04.png ├── sw-dist-cycle-05.png ├── sw-dist-cycle.png └── update-graphic.png ├── README.md └── slides └── auto_update_magic-1.0.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | README.html 3 | -------------------------------------------------------------------------------- /Exercise3a/Firefox-testing.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise3a/Firefox-testing.jss.recipe -------------------------------------------------------------------------------- /Exercise5b/Firefox-autoupdate.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise5b/Firefox-autoupdate.jss.recipe -------------------------------------------------------------------------------- /Exercise5b/PolicyTemplate-autoupdate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise5b/PolicyTemplate-autoupdate.xml -------------------------------------------------------------------------------- /Exercise5b/SmartGroupTemplate-autoupdate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise5b/SmartGroupTemplate-autoupdate.xml -------------------------------------------------------------------------------- /Exercise5c/auto_update_magic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise5c/auto_update_magic.sh -------------------------------------------------------------------------------- /Exercise5c/com.jamf.jamfnation.auto_update_magic.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise5c/com.jamf.jamfnation.auto_update_magic.plist -------------------------------------------------------------------------------- /Exercise5c/create_pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise5c/create_pkg.sh -------------------------------------------------------------------------------- /Exercise5c/pkg_scripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise5c/pkg_scripts/postinstall -------------------------------------------------------------------------------- /Exercise5c/pkg_scripts/preinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise5c/pkg_scripts/preinstall -------------------------------------------------------------------------------- /Exercise6a/Adobe Flash Player-autoupdate.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6a/Adobe Flash Player-autoupdate.jss.recipe -------------------------------------------------------------------------------- /Exercise6a/AdobeFlashPlayerSmartGroupTemplate-autoupdate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6a/AdobeFlashPlayerSmartGroupTemplate-autoupdate.xml -------------------------------------------------------------------------------- /Exercise6a/Google Chrome-autoupdate.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6a/Google Chrome-autoupdate.jss.recipe -------------------------------------------------------------------------------- /Exercise6a/Oracle Java 7-autoupdate.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6a/Oracle Java 7-autoupdate.jss.recipe -------------------------------------------------------------------------------- /Exercise6a/Oracle Java 8-autoupdate.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6a/Oracle Java 8-autoupdate.jss.recipe -------------------------------------------------------------------------------- /Exercise6a/OracleJava7SmartGroupTemplate-autoupdate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6a/OracleJava7SmartGroupTemplate-autoupdate.xml -------------------------------------------------------------------------------- /Exercise6a/OracleJava8SmartGroupTemplate-autoupdate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6a/OracleJava8SmartGroupTemplate-autoupdate.xml -------------------------------------------------------------------------------- /Exercise6b/Adobe Flash Player-testing.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6b/Adobe Flash Player-testing.jss.recipe -------------------------------------------------------------------------------- /Exercise6b/Google Chrome-testing.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6b/Google Chrome-testing.jss.recipe -------------------------------------------------------------------------------- /Exercise6b/Oracle Java 7-testing.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6b/Oracle Java 7-testing.jss.recipe -------------------------------------------------------------------------------- /Exercise6b/Oracle Java 8-testing.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6b/Oracle Java 8-testing.jss.recipe -------------------------------------------------------------------------------- /Exercise6b/PolicyTemplate-testing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6b/PolicyTemplate-testing.xml -------------------------------------------------------------------------------- /Exercise6c/PolicyTemplate-selfservice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6c/PolicyTemplate-selfservice.xml -------------------------------------------------------------------------------- /Exercise6c/Slack-selfservice.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6c/Slack-selfservice.jss.recipe -------------------------------------------------------------------------------- /Exercise6c/TextWrangler-selfservice.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6c/TextWrangler-selfservice.jss.recipe -------------------------------------------------------------------------------- /Exercise6d/1Password-selfservice.jss.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6d/1Password-selfservice.jss.recipe -------------------------------------------------------------------------------- /Exercise6d/LicensedAppPolicyTemplate-selfservice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/Exercise6d/LicensedAppPolicyTemplate-selfservice.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/LICENSE -------------------------------------------------------------------------------- /README-images/cdp-not-synced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/cdp-not-synced.png -------------------------------------------------------------------------------- /README-images/cdp-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/cdp-setting.png -------------------------------------------------------------------------------- /README-images/configure-jssimporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/configure-jssimporter.png -------------------------------------------------------------------------------- /README-images/email-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/email-notification.png -------------------------------------------------------------------------------- /README-images/firefox-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/firefox-download.png -------------------------------------------------------------------------------- /README-images/firefox-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/firefox-install.png -------------------------------------------------------------------------------- /README-images/firefox-jss-policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/firefox-jss-policy.png -------------------------------------------------------------------------------- /README-images/firefox-pkg-inspection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/firefox-pkg-inspection.png -------------------------------------------------------------------------------- /README-images/mantra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/mantra.png -------------------------------------------------------------------------------- /README-images/notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/notifications.png -------------------------------------------------------------------------------- /README-images/policy-looping-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/policy-looping-01.png -------------------------------------------------------------------------------- /README-images/policy-looping-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/policy-looping-02.png -------------------------------------------------------------------------------- /README-images/schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/schedule.png -------------------------------------------------------------------------------- /README-images/sw-dist-cycle-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/sw-dist-cycle-01.png -------------------------------------------------------------------------------- /README-images/sw-dist-cycle-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/sw-dist-cycle-02.png -------------------------------------------------------------------------------- /README-images/sw-dist-cycle-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/sw-dist-cycle-03.png -------------------------------------------------------------------------------- /README-images/sw-dist-cycle-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/sw-dist-cycle-04.png -------------------------------------------------------------------------------- /README-images/sw-dist-cycle-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/sw-dist-cycle-05.png -------------------------------------------------------------------------------- /README-images/sw-dist-cycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/sw-dist-cycle.png -------------------------------------------------------------------------------- /README-images/update-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README-images/update-graphic.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/README.md -------------------------------------------------------------------------------- /slides/auto_update_magic-1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/homebysix/auto-update-magic/HEAD/slides/auto_update_magic-1.0.pdf --------------------------------------------------------------------------------