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
## Steps to get the container to work | |
# first clone down the source | |
git clone https://bitbucket.org/bruienne/bsdpy | |
# move into the docker directory and set the +x on start.sh | |
chmod +x start.sh | |
# Edit the docker file and add the following | |
ENV DOCKER_BSDPY_PATH /nbi |
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>runtime</key> | |
<dict> | |
<key>quitAfterCompletion</key> | |
<string>YES</string> | |
<key>timeoutInSeconds</key> | |
<string>30</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
These are the scripts from the JavaEssentials.pkg |
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
Scripts from JavaSecurity.pkg |
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 | |
###################################################################################### | |
# # | |
# Author: Calum Hunter # | |
# Date: 12/12/2014 # | |
# Version: 0.3 # | |
# Purpose: Script to clean up an AutoCasperNBI for use with DEC BootStrapper. # | |
# # | |
# # |
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 | |
# Display useage info if run with no arguments: | |
if [ -z $1 ]; then | |
echo "Useage: ./test.sh com.apple.preferences.mouse /Library/Preferences/com.apple.systemprefreeences.plist" | |
exit 1 | |
fi | |
# Test to see if our pane actually exists in plist | |
echo "*** Testing for presence of prefpane $1" |
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 | |
###################################################################################### | |
# # | |
# Author: Calum Hunter # | |
# Date: 29/01/2015 # | |
# Version: 0.4 # | |
# Purpose: This script will go through and setup a base CentOS 7 minimal OS # | |
# install so that it is ready to be made into a VM template or cloned. # | |
# It will also install the first_boot_setup.sh script so that # |
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 | |
################################################################################### | |
# # | |
# Author: Calum Hunter # | |
# Date: 21-10-2014 # | |
# Vesion: 0.1 # | |
# Purpose: This script removes the all quit apps pre-install script # | |
# From the Office 2011 Updates as this normally causes a hang # | |
# when deployed as unattended install in some management tools. # |
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
#!/usr/bin/python | |
'''Uses Cocoa classes via PyObjC to set a desktop picture on all screens. | |
Tested on Mountain Lion and Mavericks. Inspired by Greg Neagle's work: https://gist.github.com/gregneagle/6957826 | |
See: | |
https://developer.apple.com/library/mac/documentation/cocoa/reference/applicationkit/classes/NSWorkspace_Class/Reference/Reference.html | |
https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSURL_Class/Reference/Reference.html | |
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/sh | |
# Copyright 2000-2011, Apple Inc. | |
# | |
# Disable prebinding-on-the-fly while we're read-only boted | |
# | |
export DYLD_NO_FIX_PREBINDING=1 | |
# | |
# Set autopower on after power failure |
OlderNewer