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
| <config> | |
| <panel> | |
| <name>AppsPanel</name> | |
| <visible>true</visible> | |
| </panel> | |
| <feature> | |
| <name>SelfServeInstalls</name> | |
| <enabled>false</enabled> | |
| </feature> | |
| </config> |
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
| #!/usr/bin/env python | |
| ''' | |
| License: https://macmule.com/license/ | |
| ''' | |
| import logging | |
| import os | |
| import shutil |
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
| <key>NSToolbar Configuration BrowserToolbarIdentifier</key> | |
| <dict> | |
| <key>TB Default Item Identifiers</key> | |
| <array> | |
| <string>BackForwardToolbarIdentifier</string> | |
| <string>com.mycomany.extension-myDeveloperID identifier</string> | |
| <string>CloudTabsToolbarIdentifier</string> | |
| <string>ShareToolbarIdentifier</string> | |
| <string>InputFieldsToolbarIdentifier</string> | |
| <string>ShowDownloadsToolbarIdentifier</string> |
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/bash | |
| #################################################################################################### | |
| # | |
| # License: https://macmule.com/license/ | |
| # | |
| #################################################################################################### | |
| # | |
| # DEFINE VARIABLES & READ IN PARAMETERS | |
| # | |
| #################################################################################################### |
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
| -- Copy the boot.efi to the booter shell | |
| on copyBootEfi_(sender) | |
| try | |
| -- Update Build Process Window's Text Field | |
| set my buildProcessTextField to "Copying boot.efi" | |
| delay 0.1 | |
| -- Update build Process ProgressBar | |
| set my buildProcessProgressBar to buildProcessProgressBar + 1 | |
| --Log Action | |
| set logMe to "Copying " & quoted form of netBootDmgMountPath & "/System/Library/CoreServices/boot.efi to " & quoted form of netBootDirectory & "/i386/booter" |
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
| <key>DisabledSystemIdentifiers</key> | |
| <array> | |
| <string>iMac10,1</string> | |
| <string>iMac11,1</string> | |
| <string>iMac11,2</string> | |
| <string>iMac11,3</string> | |
| <string>iMac12,1</string> | |
| <string>iMac12,2</string> | |
| <string>iMac13,1</string> | |
| <string>iMac13,2</string> |
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
| <key>EnabledSystemIdentifiers</key> | |
| <array> | |
| <string>MacBook11,1</string> | |
| </array> |
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 | |
| #################################################################################################### | |
| # | |
| # License: https://macmule.com/license/ | |
| # | |
| #################################################################################################### | |
| # Checks to see if the plugin exists | |
| if [ -e /Library/Internet\ Plug-Ins/Silverlight.plugin ]; | |
| 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
| #!/bin/sh | |
| #################################################################################################### | |
| # | |
| # License: https://macmule.com/license/ | |
| # | |
| #################################################################################################### | |
| # | |
| # Liberally pinched from: | |
| # https://github.com/rtrouton/rtrouton_scripts/tree/master/rtrouton_scripts/re-enable_java_6 | |
| # https://github.com/rtrouton/rtrouton_scripts/tree/master/rtrouton_scripts/enable_java_web_plugins_at_login |
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 | |
| #################################################################################################### | |
| # | |
| # License: https://macmule.com/license/ | |
| # | |
| #################################################################################################### | |
| # HARDCODED VALUES ARE SET HERE | |
| # Hour for the launchAgent to be ran on. |