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>RestartAction</key> | |
<string>RequireRestart</string> | |
<key>_metadata</key> | |
<dict> | |
<key>created_by</key> | |
<string>millerva</string> |
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
"IOClass" = "AirPort_Brcm4360" | |
"IOFirmwareVersion" = "Broadcom BCM43xx 1.0 (7.21.171.130.1a1)" | |
Model Identifier: MacBookPro11,1 | |
ProductName: Mac OS X | |
ProductVersion: 10.12.6 | |
BuildVersion: 16G29 |
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
#!/bin/bash | |
# | |
# Script to delete user profile directories excluding a list of known | |
# users to keep. Must be run as root, and is intended to run as a launch | |
# daemon | |
# | |
# define users to keep in an array | |
# (use spaces between items) |
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
include /usr/local/share/luggage/luggage.make | |
TITLE=SPSS | |
PACKAGE_VERSION=24 | |
REVERSE_DOMAIN=org.domain | |
PAYLOAD=pack-from-applications-IBM \ | |
pack-Library-Application-Support-IBM \ | |
pack-script-pb-postinstall | |
pack-Library-Application-Support-IBM: l_Library_Application_Support | |
@sudo ${CP} -R /Library/Application\ Support/IBM ${WORK_D}/Library/Application\ Support/ |
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
<key>installer_choices_xml</key> | |
<array> | |
<dict> | |
<key>attributeSetting</key> | |
<integer>1</integer> | |
<key>choiceAttribute</key> | |
<string>selected</string> | |
<key>choiceIdentifier</key> | |
<string>com.avid.pkg.sibelius.app</string> | |
</dict> |
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
#!/bin/bash -x | |
VERSION=24 | |
AUTHCODE=<redacted> | |
APPPATH="/Applications/IBM/SPSS/Statistics/$VERSION/SPSSStatistics.app/" | |
cd "$APPPATH/Contents/bin" | |
"$APPPATH/Contents/PlugIns/jre1.8.0_71.jre/Contents/Home/bin/java" -jar "$APPPATH/Contents/bin/licenseactivator.jar" SILENTMODE CODES=$AUTHCODE |
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>_metadata</key> | |
<dict> | |
<key>created_by</key> | |
<string>millerva</string> | |
<key>creation_date</key> | |
<date>2014-10-06T13:31:15Z</date> |
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
#!/bin/bash | |
# Based on a script found here : | |
# https://groups.google.com/forum/#!topic/reposado/F8-rTWdb5ho | |
# | |
RUSER=reposado | |
RECIPIENTS="[email protected]" | |
PATH="/usr/share/reposado" | |
/usr/bin/python /usr/share/reposado/code/repo_sync --log /var/log/reposync.log |