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 | |
# | |
# Preparation script for a customized OS X installer for use with VWware Fusion | |
# | |
# What the script does, in more detail: | |
# | |
# 1. Mounts the InstallESD.dmg using a shadow file, so the original DMG is left | |
# unchanged. | |
# 2. minstallconfig.xml and PartitionInfo.plist are also copied, which is looked for by the installer environment's | |
# rc.* files that first load with the system. This allows us to never actually modify the |
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>Username</key> | |
<string>username</string> | |
<key>Password</key> | |
<string>password</string> | |
<key>AdditionalUsers</key> | |
<array> |
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 | |
# | |
# Preparation script for a customized OS X installer for use with VWware Fusion and ESXi | |
# | |
# What the script does, in more detail: | |
# | |
# 1. Mounts the InstallESD.dmg using a shadow file, so the original DMG is left | |
# unchanged. | |
# 2. minstallconfig.xml is also copied, which is looked for by the installer environment's | |
# rc.* files that first load with the system. This allows us to never actually modify the |
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 | |
# Determine OS version | |
osvers=$(sw_vers -productVersion | awk -F. '{print $2}') | |
sw_vers=$(sw_vers -productVersion) | |
# Checks first to see if the Mac is running 10.7.0 or higher. | |
# If so, the script checks the system default user template | |
# for the presence of the Library/Preferences directory. | |
# |
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 | |
# Determine OS version | |
osvers=$(sw_vers -productVersion | awk -F. '{print $2}') | |
# Environment settings | |
LDAPdomain="new_ldap_server_here" # Fully qualified DNS of new LDAP server | |
oldLDAPdomain="old_ldap_server_here" # Fully qualified DNS of old LDAP server | |
oldADdomain="olddomain.com" # Fully qualified DNS name of the old Active Directory Domain | |
oldADdomainname="OLDDOMAIN" # Name of the old AD Domain as specified in the search paths |
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>PayloadContent</key> | |
<array> | |
<dict> | |
<key>PayloadContent</key> | |
<dict> | |
<key>com.apple.Safari</key> |
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>PayloadContent</key> | |
<array> | |
<dict> | |
<key>PayloadContent</key> | |
<dict> | |
<key>com.apple.Safari</key> |
This file has been truncated, but you can view the full file.
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
606543 0 drwxrwxrwx 19 root admin 646 Dec 5 17:29 /Applications/National Instruments/LabVIEW 2013 | |
643152 0 drwxrwxrwx 3 root admin 102 Jun 20 20:33 /Applications/National Instruments/LabVIEW 2013/AppLibs | |
643161 120 -rwxrwxrwx 1 root admin 58049 Jun 20 20:33 /Applications/National Instruments/LabVIEW 2013/AppLibs/lvapp.app/Contents/Resources/lvapp.icns | |
606598 0 drwxrwxrwx 19 root admin 646 Jun 20 20:33 /Applications/National Instruments/LabVIEW 2013/cintools | |
606599 136 -rw-rw-rw- 1 root admin 69594 Jun 20 20:33 /Applications/National Instruments/LabVIEW 2013/cintools/extcode.h | |
606600 32 -rw-rw-rw- 1 root admin 15438 Jun 20 20:33 /Applications/National Instruments/LabVIEW 2013/cintools/fundtypes.h | |
606601 8 -rw-rw-rw- 1 root admin 2205 Jun 20 20:33 /Applications/N |
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/tcsh -f | |
## | |
############################ login.sh ########################### | |
# Mike Bombich | [email protected] | |
# Copyright 2002 Mike Bombich. | |
# With the appropriate modification to /etc/ttys, this script will | |
# execute each time a user logs in. | |
################################################################## |
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 | |
# Original script by Noel B. Alonso: https://gist.github.com/nbalonso/5696340 | |
#variables | |
DSCL="/usr/bin/dscl" | |
SECURITY="/usr/bin/security" | |
LOGGER="/usr/bin/logger" | |
# Determine OS version |