Created
February 26, 2015 21:37
-
-
Save arubdesu/69646c49e0f68cab82cf to your computer and use it in GitHub Desktop.
Auto-allow apple+3rd party dev to get diag/crash reports
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"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>AutoSubmit</key> | |
<true/> | |
<key>AutoSubmitVersion</key> | |
<integer>4</integer> | |
<key>ThirdPartyDataSubmit</key> | |
<true/> | |
<key>ThirdPartyDataSubmitVersion</key> | |
<integer>4</integer> | |
</dict> | |
</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
USE_PKGBUILD=1 | |
include /usr/local/share/luggage/luggage.make | |
TITLE=diagAndPrivacySetup | |
REVERSE_DOMAIN=org.montefiore | |
PACKAGE_VERSION=1.0 | |
PAYLOAD= prep-crashreportdir \ | |
pack-diagPlist | |
prep-crashreportdir: l_Library_Application_Support | |
@sudo mkdir -p ${WORK_D}/Library/Application\ Support/CrashReporter | |
pack-diagPlist: prep-crashreportdir plist | |
@sudo ${DITTO} plist/ ${WORK_D}/Library/Application\ Support/CrashReporter | |
@sudo chmod -R 0664 ${WORK_D}/Library/Application\ Support/CrashReporter | |
@sudo chown -R root:admin ${WORK_D}/Library/Application\ Support/CrashReporter | |
@sudo chmod 0775 ${WORK_D}/Library/Application\ Support/CrashReporter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment