This file contains hidden or 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=StataSE13 | |
| REVERSE_DOMAIN=org.my | |
| PACKAGE_VERSION=13.1.220 | |
| PAYLOAD=prep-StataDir \ | |
| pack-Stata | |
| prep-StataDir: l_Applications |
This file contains hidden or 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
| http://enterprisemac.bruienne.com/2015/02/07/box-cutting-how-i-stumbled-onto-a-serious-security-flaw-in-box-sync-for-mac/ | |
| So you rotated your API keys! Congratulations. Forcing a reboot with an auto-update is unacceptable. Especially if you didn't expose a way to turn off auto-updates to begin with. Don't do that. | |
| Oh, and this document is wrong: https://support.box.com/hc/en-us/articles/201084243-What-features-from-Sync-3-x-have-been-removed-in-Sync-4-0- | |
| where it says you cannot disable auto-updates. | |
| $ sudo defaults write /Library/Preferences/com.box.sync.plist auto_update.enabled -bool False | |
| Currently pushing this to my fleet hoping to race your auto-updater. Don't make me do that. It harms everyones productivity. | |
| https://www.dropbox.com/s/2frza77m1il0hfk/baaaaaaad.png |
This file contains hidden or 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
| #!/bin/sh | |
| InstallParentPath=/Library/Manufacturer | |
| InstallPath="$InstallParentPath/Endpoint Agent" | |
| PGPBinaryPath="$InstallPath/Frameworks/PGP.framework/PGP" | |
| AgentPlistPath=/Library/LaunchDaemons/com.symantec.manufacturer.agent.plist | |
| cleanup_and_exist_if_failure() { | |
| if [ $1 -ne 0 ] | |
| then |
This file contains hidden or 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=LyncWebAppPlugin | |
| REVERSE_DOMAIN=org.your | |
| PACKAGE_VERSION=15.8 | |
| PAYLOAD=prep-LWAplugin \ | |
| pack-LWAplugin | |
| prep-LWAplugin: l_Library |
This file contains hidden or 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/> |
This file contains hidden or 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
| #!/bin/sh | |
| # dockutil configuration via outset's login-once option | |
| # originally tested on 10.10.3, March, 2015 | |
| set -x | |
| sleep 4 | |
| declare -xr dockutil=/usr/local/sbin/dockutil | |
| declare -xa ADDS=('Firefox.app' 'Google Chrome.app' 'Microsoft Outlook.app' \ | |
| 'Microsoft Office 2011/Microsoft Word.app' \ |
This file contains hidden or 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" standalone="no"?> | |
| <installer-gui-script minSpecVersion="1"> | |
| <options hostArchitectures="i386" customize="never"/> | |
| <title>SU_TITLE</title> | |
| <script> | |
| function needsRecoveryHDUpdate(){ | |
| var baseSystemInPackage = "14D131"; | |
| if( my.target.recoverySystemVersion ) { | |
| if (system.compareVersions( my.target.recoverySystemVersion.ProductBuildVersion, baseSystemInPackage ) < 0) { |
This file contains hidden or 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
| #!/bin/sh | |
| # | |
| # This postflight script mv the tmp install location to user home dir | |
| # | |
| Logfile=/tmp/.ciscoInstallpostflight.log | |
| dyliblist[9]=xml.dylib | |
| dyliblist[0]=rtp-29.0.0.1.dylib | |
| dyliblist[1]=rtp.dylib | |
| dyliblist[2]=cmcrypto-29.13.0.1.dylib |