distribution_custom.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<installer-gui-script minSpecVersion="1"> | |
<pkg-ref id="com.googlecode.munki.admin"/> | |
<pkg-ref id="com.googlecode.munki.app"/> | |
<pkg-ref id="com.googlecode.munki.core"/> | |
<pkg-ref id="com.googlecode.munki.launchd"/> | |
<pkg-ref id="com.github.munki.pkg.munki_config"/> | |
<options customize="allow" allow-external-scripts="yes"/> | |
<domains enable_anywhere="true"/> | |
<installation-check script="requirerestart()"/> | |
<script> | |
function requirerestart() { | |
if (!(system.run('launchctl.py') == 1)) { | |
// == true is equal to return code 0. Therefore if your script returns 0 (aka true) | |
// return true to select all of the options or false to deselect. | |
return "None"; | |
} | |
return "RequireRestart"; | |
} | |
</script> | |
<choices-outline> | |
<line choice="default"> | |
<line choice="com.googlecode.munki.admin"/> | |
<line choice="com.googlecode.munki.app"/> | |
<line choice="com.googlecode.munki.core"/> | |
<line choice="com.googlecode.munki.launchd"/> | |
<line choice="com.github.munki.pkg.munki_config"/> | |
</line> | |
</choices-outline> | |
<choice id="default"/> | |
<choice id="com.googlecode.munki.admin" visible="false"> | |
<pkg-ref id="com.googlecode.munki.admin"/> | |
</choice> | |
<pkg-ref id="com.googlecode.munki.admin" version="2.9.0.3036" onConclusion="none">munkitools_admin-2.9.0.3036.pkg</pkg-ref> | |
<choice id="com.googlecode.munki.app" visible="false"> | |
<pkg-ref id="com.googlecode.munki.app"/> | |
</choice> | |
<pkg-ref id="com.googlecode.munki.app" version="4.3.3035" onConclusion="none">munkitools_app-4.3.3035.pkg</pkg-ref> | |
<choice id="com.googlecode.munki.core" visible="false"> | |
<pkg-ref id="com.googlecode.munki.core"/> | |
</choice> | |
<pkg-ref id="com.googlecode.munki.core" version="2.9.0.3036" onConclusion="none">munkitools_core-2.9.0.3036.pkg</pkg-ref> | |
<choice id="com.googlecode.munki.launchd" visible="false"> | |
<pkg-ref id="com.googlecode.munki.launchd"/> | |
</choice> | |
<pkg-ref id="com.googlecode.munki.launchd" version="2.0.0.3019" onConclusion="none">munkitools_launchd-2.0.0.3019.pkg</pkg-ref> | |
<choice id="com.github.munki.pkg.munki_config" visible="false"> | |
<pkg-ref id="com.github.munki.pkg.munki_config"/> | |
</choice> | |
<pkg-ref id="com.github.munki.pkg.munki_config" version="1.0" onConclusion="none">munki_config.pkg</pkg-ref> | |
</installer-gui-script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment