├── .gitignore
├── README.md
├── Git
├── Git_EA.sh
└── Git_Version_EA.sh
├── AutoPkg
├── AutoPkg_EA.sh
├── AutoPkg_Config.sh
├── AutoPkg_Version_EA.sh
├── AutoPkg_Repos_EA.sh
└── AutoPkg_Run.sh
├── File_Rename
├── remove_trailing_period.sh
├── remove_leading_space.sh
├── remove_trailing_space.sh
└── remove_special_characters.sh
├── Power_Nap
├── Disable_Power_Nap_EA.sh
└── Disable_Power_Nap.sh
├── Computer_Info
├── EA_for_Computer_Info.sh
├── Set_Host_Name_From_Computer_Info.sh
└── Index_Computer_Info.sh
├── Find_My_Mac
├── Find_My_Mac_EA.sh
└── Find_My_Mac_Disable.sh
├── vmip
├── Printers
├── Printer_Option.sh
└── Printer_Install.sh
├── FileVault
└── Disable_FDEAutoLogin.sh
├── macOS_Auto_Updates
├── Configuration Profile
│ ├── com.apple.commerce.plist
│ └── com.apple.SoftwareUpdate.plist
├── Script + Extension Attributes
│ ├── macOS_AutoUpdate_EA.sh
│ ├── macOS_AutoUpdateRestartRequired_EA.sh
│ ├── macOS_AutomaticDownload_EA.sh
│ ├── macOS_ConfigDataInstall_EA.sh
│ ├── macOS_AutomaticCheckEnabled_EA.sh
│ ├── macOS_CriticalUpdateInstall_EA.sh
│ └── macOS_Configure_Auto_Updates.sh
└── README.md
├── DEPNotify
├── DEPStatus.sh
├── README.md
├── DEPStop.sh
└── DEPStart.sh
├── Enable_Auto_Proxy.sh
├── Update_Username_in_JSS.sh
├── removeDaylite.sh
├── Unenroll_macOS.sh
├── Set_Time_Server.sh
├── betterUpdate.sh
├── Reenroll_macOS.sh
├── RenameMacUserNameAndHomeDirectory.sh
├── adduser.sh
├── Mobile_To_Local_Home_Folder.sh
├── install_SoftwareUpdates_AlwaysRestart.sh
└── LICENSE.txt
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # This project has been moved to GitLab
2 | https://gitlab.com/ClassmateTeam/macOS_scripts
3 |
--------------------------------------------------------------------------------
/Git/Git_EA.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | if [ -x "/usr/local/bin/git" ]; then
4 | echo "found"
5 | else
6 | echo "missing"
7 | fi
8 | exit 0
9 |
--------------------------------------------------------------------------------
/AutoPkg/AutoPkg_EA.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | if [ -x "/usr/local/bin/autopkg" ]; then
4 | echo "found"
5 | else
6 | echo "missing"
7 | fi
8 | exit 0
9 |
--------------------------------------------------------------------------------
/File_Rename/remove_trailing_period.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | IFS=$'\n'
3 | find . -name '*.' -depth | while read f; do
4 | mv "$f" "$(dirname "$f")/$(basename "$f" | sed 's/.$//')"
5 | done
6 |
--------------------------------------------------------------------------------
/File_Rename/remove_leading_space.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | IFS=$'\n'
3 | find . -name ' *' -depth | while read f; do
4 | mv "$f" "$(dirname "$f")/$(basename "$f" | sed 's/^ *//;s/ *$//')"
5 | done
6 |
--------------------------------------------------------------------------------
/File_Rename/remove_trailing_space.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | IFS=$'\n'
3 | find . -name '* ' -depth | while read f; do
4 | mv "$f" "$(dirname "$f")/$(basename "$f" | sed 's/^ *//;s/ *$//')"
5 | done
6 |
--------------------------------------------------------------------------------
/Git/Git_Version_EA.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | result=$(/usr/local/bin/git version | awk {'print $3'})
4 | if [ -x "/usr/local/bin/git" ]; then
5 | echo "$result"
6 | fi
7 | exit 0
8 |
--------------------------------------------------------------------------------
/AutoPkg/AutoPkg_Config.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | localAdminUser=example
4 |
5 | cd /Users/$localAdminUser && sudo -H -u $localAdminUser /usr/local/bin/autopkg repo-add https://github.com/autopkg/recipes.git
6 |
--------------------------------------------------------------------------------
/Power_Nap/Disable_Power_Nap_EA.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | result=$(pmset -g | grep darkwakes | awk '{print $2}')
3 | if [ "$result" == "0" ]; then
4 | result="off"
5 | else
6 | result="on"
7 | fi
8 | echo "$result"
9 |
--------------------------------------------------------------------------------
/AutoPkg/AutoPkg_Version_EA.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | localAdminUser=example
4 |
5 | result=$(sudo -H -u $localAdminUser /usr/local/bin/autopkg version)
6 | if [ -x "/usr/local/bin/autopkg" ]; then
7 | echo "$result"
8 | fi
9 | exit 0
10 |
--------------------------------------------------------------------------------
/Computer_Info/EA_for_Computer_Info.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | result=$(ls -al /Library/ironsystems/ | grep info | awk '{print $9}')
3 | if [ "$result" == "info.plist" ]; then
4 | result="found"
5 | else
6 | result="missing"
7 | fi
8 | echo "$result"
9 |
--------------------------------------------------------------------------------
/Find_My_Mac/Find_My_Mac_EA.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | result=$(nvram -p | grep -c 'fmm-mobileme-token-FMM')
4 |
5 | if [ $result -eq 0 ]; then
6 | $result="Not Enabled"
7 | else
8 | $result="Enabled"
9 | fi
10 |
11 | echo "$result"
12 | exit 0
13 |
--------------------------------------------------------------------------------
/AutoPkg/AutoPkg_Repos_EA.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | localAdminUser=example
4 |
5 | result=$(sudo -H -u $localAdminUser /usr/local/bin/autopkg repo-list | awk {'print $2'})
6 | if [ -x "/usr/local/bin/autopkg" ]; then
7 | echo "$result"
8 | fi
9 | exit 0
10 |
--------------------------------------------------------------------------------
/Find_My_Mac/Find_My_Mac_Disable.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | # Remove Find My Mac token from nvram
3 | /usr/sbin/nvram -d fmm-mobileme-token-FMM
4 | if [ $? == 0 ]; then
5 | echo "Find My Mac token removed"
6 | exit 0
7 | else
8 | echo "Error removing Find My Mac token"
9 | exit 1
10 | fi
11 |
--------------------------------------------------------------------------------
/Power_Nap/Disable_Power_Nap.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | #Disable PowerName
4 |
5 | pwrnap=$(pmset -g | grep darkwakes | awk '{ print $2 }'
6 | if [ "$pwrnap" == "0" ]; then
7 | echo "PowerNap already disabled"
8 | else
9 | pmset -a darkwakes 0
10 | echo "PowerNap now disabled"
11 | fi
12 |
--------------------------------------------------------------------------------
/vmip:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | vmwareApp="/Applications/VMware Fusion.app"
4 |
5 | runningVM=$("$vmwareApp"/Contents/Library/vmrun list | awk 'NR>1')
6 |
7 | for foundVM in "$runningVM"
8 | do
9 | vmIP=$("$vmwareApp"/Contents/Library/vmrun getGuestIPAddress "$foundVM")
10 | echo "$foundVM: $vmIP"
11 | done
12 |
13 | exit 0
14 |
--------------------------------------------------------------------------------
/Printers/Printer_Option.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # Jamf Pro variables
4 | ## $4 = Queue Name (no spaces)
5 | ## $5 = Option=Value (space separated)
6 |
7 | /usr/bin/lpoptions -p "$4" -E -o $5
8 | if [ "$?" == 0 ]; then
9 | echo "Printer configured correctly"
10 | exit 0
11 | else
12 | echo "Error occured: $?"
13 | exit 1
14 | fi
15 |
--------------------------------------------------------------------------------
/FileVault/Disable_FDEAutoLogin.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | # Disabling FileVaults Auto-login is the best option when utilizing 802.1(1)x's login screen configuration. Although the user must enter their password twice, it ensures internet access is acquired properly.
3 |
4 | sudo defaults write /Library/Preferences/com.apple.loginwindow DisableFDEAutoLogin -bool YES
5 |
--------------------------------------------------------------------------------
/File_Rename/remove_special_characters.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | find . -depth -print0 |
3 | while IFS= read -d '' -r file; do
4 | dir=$(dirname "$file")
5 | base=$(basename "$file")
6 | base=${base//[^[:alnum:][:space:]-_,.\'()&\[\]]/_}
7 | newname="$dir/$base"
8 | if [[ ! -e $newname ]]; then
9 | mv "$file" "$newname"
10 | fi
11 | done
12 |
--------------------------------------------------------------------------------
/macOS_Auto_Updates/Configuration Profile/com.apple.commerce.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | AutoUpdate
6 |
7 | AutoUpdateRestartRequired
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Computer_Info/Set_Host_Name_From_Computer_Info.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | #Read Name from info.plist
3 | name=$(defaults read /Library/ironsystems/info.plist Name)
4 |
5 | #Set ComputerName, HostName, LocalHostName
6 | scutil --set ComputerName "$name"
7 | scutil --set LocalHostName "$name"
8 | scutil --set HostName "$name".local
9 |
10 | #Create entry in hosts file
11 | echo '127.0.0.1' "$name".local >> /etc/hosts
12 |
13 | exit 0
14 |
--------------------------------------------------------------------------------
/DEPNotify/DEPStatus.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | #################### Variables ####################
3 | # Set $4 to "Status Update (Default: Installing something)"
4 | status_update=""
5 | ################## Do Not Modify ##################
6 | # Incase we don't specify anything
7 | if [[ $4 ]]; then
8 | status_update=$4
9 | elif [[ -z $status_update ]]; then
10 | status_update="Installing something"
11 | fi
12 | # Publish status update
13 | echo "Status: $status_update" >> /var/tmp/depnotify.log
14 |
15 | exit 0
16 |
--------------------------------------------------------------------------------
/macOS_Auto_Updates/Configuration Profile/com.apple.SoftwareUpdate.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | AllowPreReleaseInstallation
6 |
7 | AutomaticCheckEnabled
8 |
9 | AutomaticDownload
10 |
11 | ConfigDataInstall
12 |
13 | CriticalUpdateInstall
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/macOS_Auto_Updates/Script + Extension Attributes/macOS_AutoUpdate_EA.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # locate defaults binary
4 | defaults=$(which defaults)
5 | if [ ! -e "$defaults" ]; then
6 | echo "defaults binary not found"
7 | exit 1
8 | fi
9 |
10 | # com.apple.commerce
11 | result=$($defaults read /Library/Preferences/com.apple.commerce AutoUpdate)
12 | if [[ "$result" == 1 ]]; then
13 | result=Enabled
14 | elif [[ "$result" == 0 ]]; then
15 | result=Disabled
16 | else
17 | result=Missing
18 | fi
19 | echo "$result"
20 | exit 0
21 |
--------------------------------------------------------------------------------
/macOS_Auto_Updates/Script + Extension Attributes/macOS_AutoUpdateRestartRequired_EA.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # locate defaults binary
4 | defaults=$(which defaults)
5 | if [ ! -e "$defaults" ]; then
6 | echo "defaults binary not found"
7 | exit 1
8 | fi
9 |
10 | # com.apple.commerce
11 | result=$($defaults read /Library/Preferences/com.apple.commerce AutoUpdateRestartRequired)
12 | if [[ "$result" == 1 ]]; then
13 | result=Enabled
14 | elif [[ "$result" == 0 ]]; then
15 | result=Disabled
16 | else
17 | result=Missing
18 | fi
19 | echo "$result"
20 | exit 0
21 |
--------------------------------------------------------------------------------
/macOS_Auto_Updates/Script + Extension Attributes/macOS_AutomaticDownload_EA.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # locate defaults binary
4 | defaults=$(which defaults)
5 | if [ ! -e "$defaults" ]; then
6 | echo "defaults binary not found"
7 | exit 1
8 | fi
9 |
10 | # com.apple.SoftwareUpdate
11 | result=$($defaults read /Library/Preferences/com.apple.SoftwareUpdate AutomaticDownload)
12 | if [[ "$result" == 1 ]]; then
13 | result=Enabled
14 | elif [[ "$result" == 0 ]]; then
15 | result=Disabled
16 | else
17 | result=Missing
18 | fi
19 | echo "$result"
20 | exit 0
21 |
--------------------------------------------------------------------------------
/macOS_Auto_Updates/Script + Extension Attributes/macOS_ConfigDataInstall_EA.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # locate defaults binary
4 | defaults=$(which defaults)
5 | if [ ! -e "$defaults" ]; then
6 | echo "defaults binary not found"
7 | exit 1
8 | fi
9 |
10 | # com.apple.SoftwareUpdate
11 | result=$($defaults read /Library/Preferences/com.apple.SoftwareUpdate ConfigDataInstall)
12 | if [[ "$result" == 1 ]]; then
13 | result=Enabled
14 | elif [[ "$result" == 0 ]]; then
15 | result=Disabled
16 | else
17 | result=Missing
18 | fi
19 | echo "$result"
20 | exit 0
21 |
--------------------------------------------------------------------------------
/Printers/Printer_Install.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | # Jamf Pro variables
3 | ## $4 = Queue Name (no spaces)
4 | ## $5 = Friendly Name
5 | ## $6 = Location
6 | ## $7 = IP Address
7 | ## $8 = Driver Location
8 | ## $9 = Protocol (Default: ipp://)
9 |
10 | if [[ $9 ]]; then
11 | protocol="$9"
12 | else
13 | protocol="ipp://"
14 | fi
15 |
16 | /usr/sbin/lpadmin -p "$4" -D "$5" -L "$6" -E -o printer-is-shared=false -v $protocol$7 -P "$8"
17 | if [ "$?" == 0 ]; then
18 | echo "Printer configured correctly"
19 | exit 0
20 | else
21 | echo "Error occured: $?"
22 | exit 1
23 | fi
24 |
--------------------------------------------------------------------------------
/macOS_Auto_Updates/Script + Extension Attributes/macOS_AutomaticCheckEnabled_EA.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # locate defaults binary
4 | defaults=$(which defaults)
5 | if [ ! -e "$defaults" ]; then
6 | echo "defaults binary not found"
7 | exit 1
8 | fi
9 |
10 | # com.apple.SoftwareUpdate
11 | result=$($defaults read /Library/Preferences/com.apple.SoftwareUpdate AutomaticCheckEnabled)
12 | if [[ "$result" == 1 ]]; then
13 | result=Enabled
14 | elif [[ "$result" == 0 ]]; then
15 | result=Disabled
16 | else
17 | result=Missing
18 | fi
19 | echo "$result"
20 | exit 0
21 |
--------------------------------------------------------------------------------
/macOS_Auto_Updates/Script + Extension Attributes/macOS_CriticalUpdateInstall_EA.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # locate defaults binary
4 | defaults=$(which defaults)
5 | if [ ! -e "$defaults" ]; then
6 | echo "defaults binary not found"
7 | exit 1
8 | fi
9 |
10 | # com.apple.SoftwareUpdate
11 | result=$($defaults read /Library/Preferences/com.apple.SoftwareUpdate CriticalUpdateInstall)
12 | if [[ "$result" == 1 ]]; then
13 | result=Enabled
14 | elif [[ "$result" == 0 ]]; then
15 | result=Disabled
16 | else
17 | result=Missing
18 | fi
19 | echo "$result"
20 | exit 0
21 |
--------------------------------------------------------------------------------
/AutoPkg/AutoPkg_Run.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | # Set parameter 4 to "Recipe(s) to Run. Separated by spaces."
3 |
4 | localAdminUser=example
5 |
6 | if [ ! -x /usr/local/bin/autopkg ]; then
7 | echo "AutoPkg binary not found"
8 | exit 1
9 | fi
10 |
11 | cd /Users/$localAdminUser/ && sudo -H -u $localAdminUser /usr/local/bin/autopkg repo-update all
12 | if [ $? != 0 ]; then
13 | echo "failed to update repos"
14 | exit 1
15 | fi
16 |
17 | cd /Users/$localAdminUser/ && sudo -H -u $localAdminUser /usr/local/bin/autopkg run $4
18 | if [ $? != 0 ]; then
19 | echo "failed to run $4"
20 | exit 1
21 | fi
22 |
--------------------------------------------------------------------------------
/Enable_Auto_Proxy.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | tbeth=$(networksetup -listallnetworkservices | grep 'Thunderbolt Ethernet')
4 | usbeth=$(networksetup -listallnetworkservices | grep 'USB Ethernet')
5 | wifi=$(networksetup -listallnetworkservices | grep 'Wi-Fi')
6 |
7 | if [ "$tbeth" == "Thunderbolt Ethernet" ]; then
8 | networksetup -setproxyautodiscovery 'Thunderbolt Ethernet' on
9 | else
10 | echo "Thunderbolt Ethernet not connected"
11 | fi
12 |
13 | if [ "$usbeth" == "USB Ethernet" ]; then
14 | networksetup -setproxyautodiscovery 'USB Ethernet' on
15 | else
16 | echo "USB Ethernet not connected"
17 | fi
18 |
19 | if [ "$wifi" == "Wi-Fi" ]; then
20 | networksetup -setproxyautodiscovery 'Wi-Fi' on
21 | else
22 | echo "Wi-Fi not connected"
23 | fi
24 |
25 | exit 0
26 |
--------------------------------------------------------------------------------
/Update_Username_in_JSS.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | ################################################################################
3 | ## Script Author: Jon Yergatian
4 | ## Last Update: 2016-07-21
5 | ############################### Variables ######################################
6 | # The local admin account that should be ignored (not reported to JSS)
7 | localAdmin=example
8 | ############################# Do Not Modify ####################################
9 |
10 | # Get the current user's username
11 | currentUser=`/bin/ls -l /dev/console | /usr/bin/awk '{ print $3 }'`
12 |
13 | if [[ "$currentUser" == "$localAdmin" || "$currentUser" == "root" ]]; then
14 | echo "User: $currentUser intentionally ignored"
15 | exit 10
16 | else
17 | echo "Submitting Username: $currentUser to JSS"
18 | jamf recon -endUsername $currentUser
19 | echo "Username: $currentUser submitted"
20 | exit 0
21 | fi
22 |
--------------------------------------------------------------------------------
/removeDaylite.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | # Look for and remove Daylite 3
3 | if [ -e /Applications/Daylite\ 3/ ]; then
4 | echo "Daylite 3 found"
5 | rm -rf /Applications/Daylite\ 3/
6 | if [ "$?" == 0 ]; then
7 | echo "Daylite 3 removed"
8 | fi
9 | else
10 | echo "Daylite 3 not found"
11 | fi
12 | # Look for and remove Daylite 4 & 5
13 | if [ -e /Applications/Daylite.app ]; then
14 | dayliteVersion=`defaults read /Applications/Daylite.app/Contents/Info.plist CFBundleShortVersionString`
15 | if [[ "$dayliteVersion" == 4.* ]] || [[ "$dayliteVersion" == 5.* ]]; then
16 | echo "Daylite 4 or 5 found"
17 | rm -rf /Applications/Daylite.app
18 | if [ "$?" == 0 ]; then
19 | echo "Daylite 4 or 5 removed"
20 | fi
21 | elif [[ "$dayliteVersion" == 6.* ]]; then
22 | echo "Daylite 6 found"
23 | fi
24 | else
25 | echo "Daylite 4, 5, or 6 not found"
26 | fi
27 | exit 0
28 |
--------------------------------------------------------------------------------
/Computer_Info/Index_Computer_Info.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | #Grab info from System_Profiler
3 | model=$(system_profiler SPHardwareDataType | grep "Model Identifier" | awk '{print $3}')
4 | serial=$(system_profiler SPHardwareDataType | awk '/Serial\ Number\ \(system\)/ {print $NF}')
5 |
6 | #Define Name prefix based on model
7 | if [[ "$model" = MacBookPro* ]]; then
8 | prefix="MBP-"
9 | elif [[ "$model" = MacBookAir* ]]; then
10 | prefix="MBA-"
11 | elif [[ "$model" = MacPro* ]]; then
12 | prefix="MP-"
13 | elif [[ "$model" = iMac* ]]; then
14 | prefix="iM-"
15 | elif [[ "$model" = MacBook* ]]; then
16 | prefix="MB-"
17 | elif [[ "$model" = MacMini* ]]; then
18 | prefix="MM-"
19 | else
20 | prefix="M-"
21 | fi
22 |
23 | #Create and write to info.plist
24 | touch /Library/ironsystems/info.plist
25 | defaults write /Library/ironsystems/info.plist Model -string "$model"
26 | defaults write /Library/ironsystems/info.plist SerialNumber -string "$serial"
27 | defaults write /Library/ironsystems/info.plist Name -string "$prefix""$serial"
28 |
29 | exit 0
30 |
--------------------------------------------------------------------------------
/macOS_Auto_Updates/Script + Extension Attributes/macOS_Configure_Auto_Updates.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # locate defaults binary
4 | defaults=$(which defaults)
5 | if [ ! -e "$defaults" ]; then
6 | echo "defaults binary not found"
7 | exit 1
8 | fi
9 |
10 | # com.apple.commerce
11 | $defaults write /Library/Preferences/com.apple.commerce AutoUpdate -bool TRUE
12 | echo "Enabled AutoUpdate"
13 | $defaults write /Library/Preferences/com.apple.commerce AutoUpdateRestartRequired -bool TRUE
14 | echo "Enabled AutoUpdateRestartRequired"
15 |
16 | # com.apple.SoftwareUpdate
17 | $defaults write /Library/Preferences/com.apple.SoftwareUpdate AutomaticCheckEnabled -bool TRUE
18 | echo "Enabled AutomaticCheckEnabled"
19 | $defaults write /Library/Preferences/com.apple.SoftwareUpdate AutomaticDownload -bool TRUE
20 | echo "Enabled AutomaticDownload"
21 | $defaults write /Library/Preferences/com.apple.SoftwareUpdate CriticalUpdateInstall -bool TRUE
22 | echo "Enabled CriticalUpdateInstall"
23 | $defaults write /Library/Preferences/com.apple.SoftwareUpdate ConfigDataInstall -bool TRUE
24 | echo "Enabled ConfigDataInstall"
25 |
26 | exit 0
27 |
--------------------------------------------------------------------------------
/Unenroll_macOS.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | ####################################################
3 | ## Set $4 to SSID
4 | ## Set $5 to SSID Password
5 | ####################################################
6 | # Find Wi-Fi interface
7 | wifiInterface=$(/usr/sbin/networksetup -listallhardwareports | awk '/^Hardware Port: (Wi-Fi|AirPort)/,/^Device/' | tail -1 | cut -c 9-)
8 |
9 | # Find current Wi-Fi network
10 | currentWifi=$(/usr/sbin/networksetup -getairportnetwork "$wifiInterface" | cut -c 24-)
11 |
12 | # Function to remove MDM
13 | removeMDM() {
14 | /bin/rm -rf /Library/Keychains/apsd.keychain
15 | /bin/rm -rf /var/db/ConfigurationProfiles
16 | /bin/echo y | /usr/bin/profiles -D
17 | }
18 |
19 | # Ensure jamf binary is ready
20 | jamfCLIPath=/usr/local/jamf/bin/jamf
21 | /usr/sbin/chown 0:0 $jamfCLIPath
22 | /bin/chmod 551 $jamfCLIPath
23 |
24 | if [ "$currentWifi" == "$4" ]; then
25 | # Remove old profiles
26 | removeMDM
27 | /bin/sleep 3
28 | # Join Wi-Fi network
29 | /usr/sbin/networksetup -setairportnetwork "$wifiInterface" "$4" "$5"
30 | else
31 | # Remove old profiles
32 | removeMDM
33 | fi
34 |
35 | # Remove framework
36 | $jamfCLIPath removeFramework
37 |
38 | # Exit
39 | exit 0
40 |
--------------------------------------------------------------------------------
/macOS_Auto_Updates/README.md:
--------------------------------------------------------------------------------
1 | # Contents
2 | ## Configuration Profile
3 | Deploy these two plists using the **Custom Settings** payload within your MDM. These will enable the following and force those in bold:
4 |
5 | * **Automatically check for updates**
6 | * **Download newly available updates in the background**
7 | * Install app updates
8 | * Install macOS updates
9 | * **Install system data files and security updates**
10 |
11 | ## Script + Extension Attributes
12 | `macOS_Configure_Auto_Updates.sh` will enable all available Automatic Update options within macOS. Each Extension Attribute (EA) script will monitor and report the status of each option.
13 |
14 | ### Smart Group Criteria
15 | ( **AutoUpdate** *is not* **Enabled**
16 | or **AutomaticCheckEnabled** *is not* **Enabled**
17 | or **AutomaticDownload** *is not* **Enabled**
18 | or **AutoUpdateRestartRequired** *is not* **Enabled**
19 | or **CriticalUpdateInstall** *is not* **Enabled**
20 | or **ConfigDataInstall** *is not* **Enabled** )
21 |
22 | ### Policy Configuration
23 | **Trigger** = Recurring Check-in & Enrollment Complete
24 | **Script** = Configure_macOS_Auto_Updates.sh
25 | **Maintenance** = Update Inventory
26 | **Scope** = Smart Group with above criteria
27 |
--------------------------------------------------------------------------------
/Set_Time_Server.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | primaryts="timeserver.local"
4 | secondaryts="pool.ntp.org"
5 |
6 | #Turn off NetworkTime before modifying settings
7 | /usr/sbin/systemsetup -setusingnetworktime off
8 |
9 | #Set specific time server
10 | /usr/sbin/systemsetup -setnetworktimeserver $primaryts
11 |
12 | # Set time zone automatically using current location
13 | /bin/echo "set time zone automatically using current location"
14 | # enable location services
15 | /bin/launchctl unload /System/Library/LaunchDaemons/com.apple.locationd.plist
16 | uuid=`/usr/sbin/system_profiler SPHardwareDataType | grep "Hardware UUID" | cut -c22-57`
17 | /usr/bin/defaults write /var/db/locationd/Library/Preferences/ByHost/com.apple.locationd.$uuid LocationServicesEnabled -int 1
18 | /usr/sbin/chown -R _locationd:_locationd /var/db/locationd
19 | /bin/launchctl load /System/Library/LaunchDaemons/com.apple.locationd.plist
20 | # set time zone automatically using current location
21 | /usr/bin/defaults write /Library/Preferences/com.apple.timezone.auto Active -bool true
22 |
23 | #Turn on NetworkTime with new settings
24 | /usr/sbin/systemsetup -setusingnetworktime on
25 |
26 | #Add external TimeServer
27 | /bin/echo "adding external time server"
28 | /bin/echo server $secondaryts >> /private/etc/ntp.conf
29 |
30 | exit 0
31 |
--------------------------------------------------------------------------------
/betterUpdate.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | ########################## Variables ##########################
3 | jamfHelper='/Library/Application Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper'
4 | applicationTitle="$4"
5 | processNames="$5"
6 | customTrigger="$6"
7 | IFS=","
8 | title="IT Alerts"
9 | icon="/path/to/icon.png"
10 | heading1="Update ${applicationTitle}"
11 | description1="needs to quit before ${applicationTitle} can be updated.
12 |
13 | Click Continue to quit."
14 | ######################### Do Not Edit #########################
15 | # Prompts user with jamfHelper when called
16 | function promptUser()
17 | {
18 | promptResult=""
19 | promptResult=$($jamfHelper -lockHUD -windowType utility -icon "$icon" -title "$title" -heading "$1" -alignHeading center -description "$3 $2" -button1 Continue -button2 Cancel -defaultButton 1)
20 | }
21 | # Check to see if any specified process is running, prompt user to quit if yes
22 | for process in $processNames
23 | do
24 | PID=""
25 | PID=`pgrep "$process"`
26 | if [ ! -z "$PID" ]; then
27 | promptUser "$heading1" "$description1" "$process"
28 | if [[ $promptResult = 0 ]]; then
29 | killall "$process"
30 | elif [[ $promptResult = 2 ]]; then
31 | echo "User clicked Cancel"
32 | exit 1
33 | fi
34 | fi
35 | done
36 | # Initiate install using custom trigger from policy
37 | jamf policy -event $customTrigger
38 | # clean exit
39 | exit 0
40 |
41 |
--------------------------------------------------------------------------------
/Reenroll_macOS.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | ####################################################
3 | ## Set $4 to Jamf Pro URL
4 | ## Set $5 to Enroll Invitation Code
5 | ## Set $6 to SSID
6 | ## Set $7 to SSID Password
7 | ####################################################
8 | # Find Wi-Fi interface
9 | wifiInterface=$(/usr/sbin/networksetup -listallhardwareports | awk '/^Hardware Port: (Wi-Fi|AirPort)/,/^Device/' | tail -1 | cut -c 9-)
10 |
11 | # Find current Wi-Fi network
12 | currentWifi=$(/usr/sbin/networksetup -getairportnetwork "$wifiInterface" | cut -c 24-)
13 |
14 | # Function to remove MDM
15 | removeMDM() {
16 | /bin/rm -rf /Library/Keychains/apsd.keychain
17 | /bin/rm -rf /var/db/ConfigurationProfiles
18 | /bin/echo y | /usr/bin/profiles -D
19 | }
20 |
21 | # Ensure jamf binary is ready
22 | jamfCLIPath=/usr/local/jamf/bin/jamf
23 | /usr/sbin/chown 0:0 $jamfCLIPath
24 | /bin/chmod 551 $jamfCLIPath
25 |
26 | if [ "$currentWifi" == "$6" ]; then
27 | # Remove old profiles
28 | removeMDM
29 | /bin/sleep 3
30 | # Join Wi-Fi network
31 | /usr/sbin/networksetup -setairportnetwork "$wifiInterface" "$6" "$7"
32 | else
33 | # Remove old profiles
34 | removeMDM
35 | fi
36 |
37 | # Create the configuration file at /Library/Preferences/com.jamfsoftware.jamf.plist
38 | $jamfCLIPath createConf -url $4
39 |
40 | # Turn on SSH
41 | $jamfCLIPath startSSH
42 |
43 | # Run enroll
44 | $jamfCLIPath enroll -invitation $5 -noPolicy
45 | enrolled=$?
46 | if [ $enrolled -eq 0 ]
47 | then
48 | $jamfCLIPath update
49 | $jamfCLIPath mdm
50 | $jamfCLIPath policy -event enrollmentComplete
51 | enrolled=$?
52 | fi
53 |
54 | # Exit
55 | exit $enrolled
56 |
--------------------------------------------------------------------------------
/RenameMacUserNameAndHomeDirectory.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | #
4 | # Script to rename the user name of a user on OS X
5 | #
6 | # The script updates the users record name and home directory
7 | # name from an old name to a new one.
8 | #
9 | # NOTE: MUST BE RUN AS ROOT!
10 | #
11 | abort() {
12 | errString=${*}
13 | echo "$errString"
14 | exit 1
15 | }
16 |
17 | if [[ ${#} -ne 2 ]]
18 | then
19 | echo "Usage: $0 oldUserName newUserName"
20 | exit 1
21 | fi
22 |
23 | oldUser=$1
24 | newUser=$2
25 |
26 | if [[ -z "${newUser}" ]]
27 | then
28 | abort "New user name must not be empty!"
29 | fi
30 |
31 | origHomeDir=`dscl . -read /Users/${oldUser} NFSHomeDirectory | awk '{print $2}' -`
32 |
33 | if [[ -z "${origHomeDir}" ]]
34 | then
35 | abort "Cannot obtain the original home directory name, is the oldUserName correct?"
36 | fi
37 |
38 | dscl . -change /Users/${oldUser} NFSHomeDirectory /Users/${oldUser} /Users/${newUser}
39 | err=$?
40 | if [ ${err} -ne 0 ]
41 | then
42 | abort "Could not rename the user's home directory pointer, aborting further changes! - err=${err}"
43 | fi
44 |
45 | mv /Users/${oldUser} /Users/${newUser}
46 | err=$?
47 | if [[ ${err} -ne 0 ]]
48 | then
49 | abort "Could not rename the user's home directory in /Users - the user may not be able to login unless you correct dscl to point back to /Users/${oldUser}"
50 | fi
51 |
52 | dscl . -change /Users/${oldUser} RecordName ${oldUser} ${newUser}
53 | err=$?
54 | if [[ ${err} -ne 0 ]]
55 | then
56 | abort "Could not rename the user's RecordName in dscl - the user should still be able to login, but with user name ${oldUser}, however, their home directory will be pointed to /Users/${newUser}"
57 | fi
58 |
59 | echo "SUCCESS: ${oldUser} --> ${newUser}"
60 |
61 | exit 0
62 |
--------------------------------------------------------------------------------
/DEPNotify/README.md:
--------------------------------------------------------------------------------
1 | **Note:**
2 | >*These scripts were written for maximum compatibility with Jamf Pro but should work with any deployment framework.*
3 |
4 | # Scripts
5 |
6 | ## DEPStart.sh
7 | Deploy as early in the deployment process as possible. This will set the stage for DEPNotify.app and then open the application.
8 | #### Variables
9 | ```
10 | # Unique Launch Agent identifier
11 | org_identifier="com.depnotify"
12 |
13 | # Set $4 to "DEPNotify Path (Default: /Applications/DEPNotify.app)"
14 | depnotify_path=""
15 |
16 | # Set $5 to "Support Link (Default: None)"
17 | support_link=""
18 |
19 | # Set $6 to "Image Path (Default: None)"
20 | image_path=""
21 |
22 | # Set $7 to "Welcome Message (Default: Welcome to your new Mac!)"
23 | welcome_message=""
24 |
25 | # Set $8 to "Window Title (Default: Hello!)"
26 | window_title=""
27 |
28 | # Set $9 to "Intro Status (Default: Running automated setup)"
29 | intro_status=""
30 | ```
31 |
32 | ## DEPStatus.sh
33 | While optional, this script is what makes DEPNotify.app so great. Attach this script to the payload of any policy you'd like to notify your users of. I'd recommend having this script run *before* other items in the payload.
34 | #### Variables
35 | ```
36 | # Set $4 to "Status Update (Default: Installing something)"
37 | status_update=""
38 | ```
39 |
40 | ## DEPStop.sh
41 | This will close DEPNotify.app and, optionally, logout or quit with/without a message to the user. This should should run as late as possible in the deployment process.
42 | #### Variables
43 | ```
44 | # Unique Launch Agent identifier
45 | org_identifier="com.depnotify"
46 |
47 | # Set $4 to "Quitting Message (Default: None)"
48 | quitting_message=""
49 |
50 | # Set $5 to "Open Self Service (Default: False)"
51 | open_self_service=""
52 |
53 | # Set $6 to "Self Service Path (Default: /Applications/Self Service.app)"
54 | self_service_path=""
55 |
56 | # Set $7 to "Ask for Logout (Default: False)"
57 | ask_logout=""
58 |
59 | # Set $8 to "Logout Message (Default: Please logout to enable FileVault.)"
60 | logout_message=""
61 |
62 | # Set $9 to "Force Logout (Default: False)"
63 | force_logout=""
64 | ```
65 |
--------------------------------------------------------------------------------
/DEPNotify/DEPStop.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | #################### Variables ####################
3 | # Unique Launch Agent identifier
4 | org_identifier="com.depnotify"
5 | # Set $4 to "Quitting Message (Default: None)"
6 | quitting_message=""
7 | # Set $5 to "Open Self Service (Default: False)"
8 | open_self_service=""
9 | # Set $6 to "Self Service Path (Default: /Applications/Self Service.app)"
10 | self_service_path=""
11 | # Set $7 to "Ask for Logout (Default: False)"
12 | ask_logout=""
13 | # Set $8 to "Logout Message (Default: Please logout to enable FileVault.)"
14 | logout_message=""
15 | # Set $9 to "Force Logout (Default: False)"
16 | force_logout=""
17 | ################## Do Not Modify ##################
18 |
19 | # Incase we don't specify anything
20 | if [[ $4 ]]; then
21 | quitting_message=$4
22 | fi
23 | if [[ $5 ]]; then
24 | open_self_service=$5
25 | fi
26 | if [[ $6 ]]; then
27 | self_service_path=$6
28 | elif [[ -z $self_service_path ]]; then
29 | self_service_path="/Applications/Self Service.app"
30 | fi
31 | if [[ $7 ]]; then
32 | ask_logout=$7
33 | fi
34 | if [[ $8 ]]; then
35 | logout_message=$8
36 | elif [[ -z $logout_message ]]; then
37 | logout_message="Please logout to enable FileVault"
38 | fi
39 | if [[ $9 ]]; then
40 | force_logout=$9
41 | fi
42 | # Main
43 | if [[ $force_logout ]]; then
44 | ## Force Logout
45 | echo "Command: LogoutNow:" >> /var/tmp/depnotify.log
46 | echo "Command: Quit" >> /var/tmp/depnotify.log
47 | ## Ask for Logout
48 | elif [[ $ask_logout ]]; then
49 | echo "Command: WindowStyle: Activate" >> /var/tmp/depnotify.log
50 | echo "Command: Logout: $logout_message" >> /var/tmp/depnotify.log
51 | else
52 | ## Quit
53 | if [[ $quitting_message ]]; then
54 | ### Quit with message
55 | echo "Command: WindowStyle: Activate" >> /var/tmp/depnotify.log
56 | echo "Command: Quit: $quitting_message" >> /var/tmp/depnotify.log
57 | else
58 | ### Quit without message
59 | echo "Command: Quit" >> /var/tmp/depnotify.log
60 | fi
61 | ## Open Self Service, if desired
62 | if [[ $open_self_service ]]; then
63 | open "$self_service_path"
64 | fi
65 | fi
66 | /bin/rm -f /Library/LaunchAgents/$org_identifier.plist
67 | exit 0
68 |
--------------------------------------------------------------------------------
/adduser.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | # create_user_1.2.sh
4 | #
5 | #
6 | #
7 |
8 | if [ "$(id -u)" != "0" ]; then
9 | echo "Sorry, you are not root. Please run with sudo!"
10 | exit 1
11 | fi
12 |
13 |
14 | # === For creating a User we need some input! ===
15 |
16 | echo "Enter your desired user name: "
17 | read USERNAME
18 |
19 | echo "Enter a full name for this user: "
20 | read FULLNAME
21 |
22 | echo "Enter a password for this user: "
23 | read -s PASSWORD
24 |
25 | # ====
26 |
27 |
28 | # A list of groups the user should belong to
29 | # This makes the difference between admin and non-admin users.
30 |
31 | echo "Is this an administrative user? (y/n)"
32 | read GROUP_ADD
33 |
34 | if [ "$GROUP_ADD" = n ] ; then
35 | SECONDARY_GROUPS="staff" # for a non-admin user
36 | elif [ "$GROUP_ADD" = y ] ; then
37 | SECONDARY_GROUPS="admin _lpadmin _appserveradm _appserverusr" # for an admin user
38 | else
39 | echo "Please make a selection!"
40 | fi
41 |
42 | # ====
43 |
44 | # Create a UID that is not currently in use
45 | echo "Creating an unused UID for new user..."
46 |
47 | # Find out the next available user ID
48 | MAXID=$(dscl . -list /Users UniqueID | awk '{print $2}' | sort -ug | tail -1)
49 | USERID=$((MAXID+1))
50 |
51 | # check the OS X Version
52 | OSXVERSION=$(sw_vers -productVersion | awk -F '.' '{print $1 "." $2}')
53 |
54 | #if osx 10.10 then run
55 | if [[ "$OSXVERSION" == "10.11" ]]; then
56 | echo "OS is 10.11"
57 | sysadminctl -addUser $USERNAME -fullName "$FULLNAME" -UID=$USERID -password $PASSWORD
58 |
59 | #if osx 10.10 then run
60 |
61 | elif [[ "$OSXVERSION" == "10.10" ]]; then
62 | echo "OS is 10.10"
63 | sysadminctl -addUser $USERNAME -fullName "$FULLNAME" -UID=$USERID -password $PASSWORD
64 |
65 | #if osx 10.9 then run
66 |
67 | elif [[ "$OSXVERSION" == "10.9" ]]; then
68 |
69 | # Create the user account by running dscl
70 | echo "Creating necessary files..."
71 |
72 | dscl . -create /Users/$USERNAME
73 | dscl . -create /Users/$USERNAME UserShell /bin/bash
74 | dscl . -create /Users/$USERNAME RealName "$FULLNAME"
75 | dscl . -create /Users/$USERNAME UniqueID "$USERID"
76 | dscl . -create /Users/$USERNAME PrimaryGroupID 20
77 | dscl . -create /Users/$USERNAME NFSHomeDirectory /Users/$USERNAME
78 | dscl . -passwd /Users/$USERNAME $PASSWORD
79 |
80 | # Create the home directory
81 | echo "Creating home directory..."
82 | createhomedir -c 2>&1 | grep -v "shell-init"
83 |
84 | fi
85 |
86 | # Add user to any specified groups
87 | echo "Adding user to specified groups..."
88 |
89 | for GROUP in $SECONDARY_GROUPS ; do
90 | dseditgroup -o edit -t user -a $USERNAME $GROUP
91 | done
92 |
93 | echo "Created user #$USERID: $USERNAME ($FULLNAME)"
94 |
95 | exit 0
96 |
--------------------------------------------------------------------------------
/DEPNotify/DEPStart.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | #################### Variables ####################
4 | # Unique Launch Agent identifier
5 | org_identifier="com.depnotify"
6 | # Set $4 to "DEPNotify Path (Default: /Applications/Utilities/DEPNotify.app)"
7 | depnotify_path=""
8 | # Set $5 to "Support Link (Default: None)"
9 | support_link=""
10 | # Set $6 to "Image Path (Default: None)"
11 | image_path=""
12 | # Set $7 to "Welcome Message (Default: Welcome to your new Mac!)"
13 | welcome_message=""
14 | # Set $8 to "Window Title (Default: Hello!)"
15 | window_title=""
16 | # Set $9 to "Intro Status (Default: Running automated setup)"
17 | intro_status=""
18 | ################## Do Not Modify ##################
19 |
20 | DATE=$(date "+%Y%m%d-%H%M%S")
21 |
22 | # Incase we didn't specify something
23 | ## Launch Agent identifier
24 | if [[ -z $org_identifier ]]; then
25 | echo "Missing Launch Agent identifier"
26 | exit 1
27 | fi
28 | ## DEPNotify Path
29 | if [[ $4 ]]; then
30 | depnotify_path=$4
31 | elif [[ -z $depnotify_path ]]; then
32 | depnotify_path="/Applications/Utilities/DEPNotify.app"
33 | fi
34 | ## Support Link
35 | if [[ $5 ]]; then
36 | support_link=$5
37 | fi
38 | ## Image Path
39 | if [[ $6 ]]; then
40 | image_path=$6
41 | fi
42 | ## Welcome Message
43 | if [[ $7 ]]; then
44 | welcome_message=$7
45 | elif [[ -z $welcome_message ]]; then
46 | welcome_message="Welcome to your new Mac!"
47 | fi
48 | ## Window Title
49 | if [[ $8 ]]; then
50 | window_title=$8
51 | elif [[ -z $window_title ]]; then
52 | window_title="Hello!"
53 | fi
54 | ## Intro Status
55 | if [[ $9 ]]; then
56 | intro_status=$9
57 | elif [[ -z $intro_status ]]; then
58 | intro_status="Running automated setup"
59 | fi
60 |
61 | # Install Launch Agent
62 | launch_agent="
63 |
64 |
65 |
66 | Label
67 | $org_identifier
68 | ProgramArguments
69 |
70 | /usr/bin/open
71 | $depnotify_path
72 |
73 | RunAtLoad
74 |
75 |
76 | "
77 |
78 | # Backup existing depnotify.log
79 | if [ -r /var/tmp/depnotify.log ]; then
80 | cp /var/tmp/depnotify.log /var/tmp/depnotify.log.$DATE
81 | fi
82 |
83 | # Set the stage
84 | if [[ $support_link ]]; then
85 | echo "Command: Help: $support_link" > /var/tmp/depnotify.log
86 | fi
87 | if [[ $image_path ]]; then
88 | echo "Command: Image: $image_path" >> /var/tmp/depnotify.log
89 | fi
90 | echo "Command: MainText: $welcome_message" >> /var/tmp/depnotify.log
91 | echo "Command: WindowStyle: Activate" >> /var/tmp/depnotify.log
92 | echo "Command: WindowTitle: $window_title" >> /var/tmp/depnotify.log
93 | # Make sure it's readable
94 | chmod 644 /var/tmp/depnotify.log
95 | # Start the process
96 | echo "$launch_agent" > "/Library/LaunchAgents/$org_identifier.plist"
97 | uid=$(/usr/bin/stat -f %u /dev/console)
98 | if [ $uid -gt 500 ]; then
99 | /bin/launchctl asuser $uid /bin/launchctl load /Library/LaunchAgents/$org_identifier.plist
100 | fi
101 | # Announce new begginings
102 | echo "Status: $intro_status" >> /var/tmp/depnotify.log
103 |
104 | exit 0
105 |
--------------------------------------------------------------------------------
/Mobile_To_Local_Home_Folder.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # Recreate account.sh
4 | #
5 | # This script is designed to remove a mobile user account and re-create
6 | # a local account with the same username and the password from user-input.
7 | # It will also give read/write permissions to the user's home folder.
8 |
9 | #Gets the short name of the currently logged in user
10 | loggedInUser=$3
11 |
12 | #Get loggedInUser UID
13 | UserUID=`dscl . read /Users/"$loggedInUser" UniqueID | grep UniqueID: | cut -c 11-`
14 |
15 | #Exit if UID is under 1000 (local account)
16 | if [[ "$UserUID" -lt 1000 ]]; then
17 | echo "Not a mobile account, exiting"
18 | exit 2
19 | else
20 |
21 | #Gets the real name of the currently logged in user
22 | userRealName=`dscl . -read /Users/$loggedInUser | grep RealName: | cut -c11-`
23 | if [[ -z $userRealName ]]; then
24 | userRealName=`dscl . -read /Users/$loggedInUser | awk '/^RealName:/,/^RecordName:/' | sed -n 2p | cut -c 2-`
25 | fi
26 |
27 | #Prompts user to enter their login password
28 | loginPassword=`/usr/bin/osascript < /dev/null )
136 |
137 | ## If user has not changed their settings, value will be null. Set to default 'Aqua' color
138 | if [[ -z "$AquaColor" ]]; then
139 | AquaColor="1"
140 | else
141 | AquaColor="$AquaColor"
142 | fi
143 |
144 | ## Get logged in user's Keyboard access settings
145 | KeybdMode=$( defaults read "$HomeDir/Library/Preferences/.GlobalPreferences" AppleKeyboardUIMode 2> /dev/null )
146 |
147 | ## If user has not changed their settings, value will be null. Set to default 'Text boxes and lists only'
148 | if [[ -z "$KeybdMode" ]]; then
149 | KeybdMode="0"
150 | else
151 | KeybdMode="$KeybdMode"
152 | fi
153 |
154 | ## Set the root account environment settings to match current logged in user's
155 | defaults write /private/var/root/Library/Preferences/.GlobalPreferences AppleAquaColorVariant -int "${AquaColor}"
156 | defaults write /private/var/root/Library/Preferences/.GlobalPreferences AppleKeyboardUIMode -int "${KeybdMode}"
157 |
158 | ## Restart cfprefsd so new settings will be recognized
159 | killall cfprefsd
160 |
161 | ################################# Do not modify below this line ########################################
162 |
163 | ## Function to run when installations are complete
164 | doneRestart ()
165 | {
166 |
167 | doneMSG="Apple Software Updates have been installed, but your Mac needs to reboot to finish the process.
168 |
169 | Your Mac will automatically reboot in $minToRestart minutes. Please save any open documents and quit any open apps now."
170 |
171 | ## Display initial message for 30 seconds before starting the progress bar countdown
172 | userSelection=$("$cdPath" msgbox \
173 | --title "$orgName Software Update" \
174 | --text "Updates installed successfully" \
175 | --informative-text "$doneMSG" \
176 | --button1 " OK " \
177 | --button2 "Restart Now" \
178 | --icon-file "$msgIcon" \
179 | --posY top \
180 | --width 450 \
181 | --timeout 120 \
182 | --timeout-format " ")
183 |
184 | if [[ "$userSelection" == "1" ]]; then
185 | echo "User clicked OK button. Continuing with reboot countdown..."
186 | elif [[ "$userSelection" == "2" ]]; then
187 | echo "User clicked Restart Now. Initiating reboot in 4 seconds..."
188 | sleep 4
189 | /sbin/shutdown -r now
190 | else
191 | echo "Dialog timed out. Continuing with reboot countdown..."
192 | fi
193 |
194 | ## Sub-function to (re)display the progressbar window. Developed to work around the fact that
195 | ## CD responds to Cmd+Q and will quit. The script continues the countdown. The sub-function
196 | ## causes the progress bar to reappear. When the countdown is done we quit all CD windows
197 | showProgress ()
198 | {
199 |
200 | ## Display progress bar
201 | "$cdPath" progressbar --title "" --text " Preparing to restart this Mac..." \
202 | --width 500 --height 90 --icon-file "$restartIcon" --icon-height 48 --icon-width 48 < /tmp/hpipe &
203 |
204 | ## Send progress through the named pipe
205 | exec 20<> /tmp/hpipe
206 |
207 | }
208 |
209 | ## Close file descriptor 20 if in use, and remove any instance of /tmp/hpipe
210 | exec 20>&-
211 | rm -f /tmp/hpipe
212 |
213 | ## Create the name pipe input for the progressbar
214 | mkfifo /tmp/hpipe
215 | sleep 0.2
216 |
217 | ## Run progress bar sub-function
218 | showProgress
219 |
220 | echo "100" >&20
221 |
222 | timerSeconds=$((minToRestart*60))
223 | startTime=$( date +"%s" )
224 | stopTime=$((startTime+timerSeconds))
225 | secsLeft=$timerSeconds
226 | progLeft="100"
227 |
228 | while [[ "$secsLeft" -gt 0 ]]; do
229 | sleep 1
230 | currTime=$( date +"%s" )
231 | progLeft=$((secsLeft*100/timerSeconds))
232 | secsLeft=$((stopTime-currTime))
233 | minRem=$((secsLeft/60))
234 | secRem=$((secsLeft%60))
235 | if [[ $(ps axc | grep "cocoaDialog") == "" ]]; then
236 | showProgress
237 | fi
238 | echo "$progLeft $minRem minutes, $secRem seconds until reboot. Please save any work now." >&20
239 | done
240 |
241 | echo "Closing progress bar."
242 | exec 20>&-
243 | rm -f /tmp/hpipe
244 |
245 | ## Close cocoaDialog. This block is necessary for when multiple runs of the sub-function were called in the script
246 | for process in $(ps axc | awk '/cocoaDialog/{print $1}'); do
247 | /usr/bin/osascript -e 'tell application "cocoaDialog" to quit'
248 | done
249 |
250 | ## Clean up by deleting the SWUList file in /tmp/
251 | rm /tmp/SWULIST
252 |
253 | ## Delay 1/2 second, then force reboot
254 | sleep 0.5
255 | /sbin/shutdown -r now
256 |
257 | }
258 |
259 | ## Function to install selected updates, updating progress bar with information
260 | installUpdates ()
261 | {
262 |
263 | installMSG="Apple Software Updates are installing in the background. Please do not shut down your Mac or put it to sleep until the installs finish.
264 | IMPORTANT:
265 | Your Mac will reboot soon after the updates are installed, we recommend saving any important documents now."
266 |
267 |
268 | ## Sub-function to display both a button-less CD window and a progress bar
269 | ## This sub routine gets called by the enclosing function. It can also be called by
270 | ## the install process if it does not see 2 instances of CD running
271 | showInstallProgress ()
272 | {
273 |
274 | ## Display button-less window above progress bar, push to background
275 | "$cdPath" msgbox --title "$orgName Software Update" --text "Installing Software Updates" \
276 | --informative-text "${installMSG}" --icon-file "${msgIcon}" --width 450 --height 184 --posY top &
277 |
278 | ## Display progress bar
279 | echo "Displaying progress bar window."
280 | "$cdPath" progressbar --title "" --text " Preparing to install selected updates..." \
281 | --posX "center" --posY 198 --width 450 --float --icon installer < /tmp/hpipe &
282 |
283 | ## Send progress through the named pipe
284 | exec 10<> /tmp/hpipe
285 |
286 | }
287 |
288 | ## Close file descriptor 10 if in use, and remove any instance of /tmp/hpipe
289 | exec 10>&-
290 | rm -f /tmp/hpipe
291 |
292 | ## Create the name pipe input for the progressbar
293 | mkfifo /tmp/hpipe
294 | sleep 0.2
295 |
296 | ## Run the install progress sub-function (shows button-less CD window and progressbar
297 | showInstallProgress
298 |
299 | if [[ "$showProgEachUpdate" == "yes" ]]; then
300 | echo "Showing individual update progress."
301 | ## Run softwareupdate in verbose mode for each selected update, parsing output to feed the progressbar
302 | ## Set initial index loop value to 0; set initial update count value to 1; set variable for total updates count
303 | i=0;
304 | pkgCnt=1
305 | pkgTotal="${#selectedItems[@]}"
306 | for index in "${selectedItems[@]}"; do
307 | UpdateName="${progSelectedItems[$i]}"
308 | echo "Now installing ${UpdateName}..."
309 | /usr/sbin/softwareupdate --verbose -i "${index}" 2>&1 | while read line; do
310 | ## Re-run the sub-function to display the cocoaDialog window and progress
311 | ## if we are not seeing 2 items for CD in the process list
312 | if [[ $(ps axc | grep "cocoaDialog" | wc -l | sed 's/^ *//') != "2" ]]; then
313 | killall cocoaDialog
314 | showInstallProgress
315 | fi
316 | pct=$( echo "$line" | awk '/Progress:/{print $NF}' | cut -d% -f1 )
317 | echo "$pct Installing ${pkgCnt} of ${pkgTotal}: ${UpdateName}..." >&10
318 | done
319 | let i+=1
320 | let pkgCnt+=1
321 | done
322 | else
323 | ## Show a generic progress bar that progresses through all installs at once from 0-100 %
324 | echo "Parameter 5 was set to \"no\". Showing single progress bar for all updates"
325 | softwareupdate --verbose -i "${SWUItems[@]}" 2>&1 | while read line; do
326 | ## if we are not seeing 2 items for CD in the process list
327 | if [[ $(ps axc | grep "cocoaDialog" | wc -l | sed 's/^ *//') != "2" ]]; then
328 | killall cocoaDialog
329 | showInstallProgress
330 | fi
331 | pct=$( echo "$line" | awk '/Progress:/{print $NF}' | cut -d% -f1 )
332 | echo "$pct Installing ${#SWUItems[@]} updates..." >&10
333 | done
334 | fi
335 |
336 | echo "Closing progress bar."
337 | exec 10>&-
338 | rm -f /tmp/hpipe
339 |
340 | ## Close all instances of cocoaDialog
341 | echo "Closing all cocoaDialog windows."
342 | for process in $(ps axc | awk '/cocoaDialog/{print $1}'); do
343 | /usr/bin/osascript -e 'tell application "cocoaDialog" to quit'
344 | done
345 |
346 | doneRestart
347 | }
348 |
349 | ## Parsing the data
350 | prepareUpdates ()
351 | {
352 | selectedItems+=( "${SWUItems[@]}" )
353 | hrSelectedItems+=( "${SWUList[@]}" )
354 | progSelectedItems+=( "${SWUProg[@]}" )
355 |
356 | echo "The following updates will be installed: ${progSelectedItems[@]}"
357 |
358 | ## If we have some selected items, move to install phase
359 | if [[ ! -z "${selectedItems[@]}" ]]; then
360 | echo "Updates were selected"
361 | installUpdates
362 | fi
363 |
364 | }
365 |
366 | ## The initial function
367 | buildLists ()
368 | {
369 |
370 | ## Generate array of SWUs for dialog
371 | while read SWU; do
372 | SWUList+=( "$SWU" )
373 | done < <(echo "${readSWUs}")
374 |
375 | ## Generate array of SWUs for progress bar
376 | while read item; do
377 | SWUProg+=( "${item}" )
378 | done < <(echo "${progSWUs}")
379 |
380 | ## Generate array of SWUs for installation
381 | while read swuitem; do
382 | SWUItems+=( "$swuitem" )
383 | done < <(echo "${installSWUs}")
384 |
385 | ## Generate an array of indexes for any non-reboot updates
386 | for index in "${!SWUList[@]}"; do
387 | if [[ $(echo "${SWUList[$index]}" | grep "^◀") == "" ]]; then
388 | noReboots+=( "$index" )
389 | fi
390 | done
391 |
392 | prepareUpdates
393 | }
394 |
395 | ## Function to lock the login window and install all available updates
396 | startLockScreenAgent ()
397 | {
398 |
399 | ## Note on this function: To make the script usable outside of a Casper Suite environment,
400 | ## we are using the Apple Remote Management LockScreen.app, located inside the AppleVNCServer bundle.
401 | ## This bundle and corresponding app is installed by default in all recent versions of OS X
402 |
403 | ## Set a flag to yes if any updates in the list will require a reboot
404 | while read line; do
405 | if [[ $(echo "$line" | grep "^◀") != "" ]]; then
406 | rebootsPresent="yes"
407 | break
408 | fi
409 | done < <(echo "$readSWUs")
410 |
411 | ## Define the name and path to the LaunchAgent plist
412 | PLIST="/Library/LaunchAgents/com.LockLoginScreen.plist"
413 |
414 | ## Define the text for the xml plist file
415 | LAgentCore="
416 |
417 |
418 |
419 | Label
420 | com.LockLoginScreen
421 | RunAtLoad
422 |
423 | LimitLoadToSessionType
424 | LoginWindow
425 | ProgramArguments
426 |
427 | /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Support/LockScreen.app/Contents/MacOS/LockScreen
428 | -session
429 | 256
430 | -msg
431 | Apple Software Updates are being installed
432 |
433 |
434 | "
435 |
436 | ## Create the LaunchAgent file
437 | echo "Creating the LockLoginScreen LaunchAgent..."
438 | echo "$LAgentCore" > "$PLIST"
439 |
440 | ## Set the owner, group and permissions on the LaunchAgent plist
441 | echo "Setting proper ownership and permissions on the LaunchAgent..."
442 | chown root:wheel "$PLIST"
443 | chmod 644 "$PLIST"
444 |
445 | ## Use SIPS to copy and convert the SWU icon to use as the LockScreen icon
446 |
447 | ## First, back up the original Lock.jpg image
448 | echo "Backing up Lock.jpg image..."
449 | mv /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Support/LockScreen.app/Contents/Resources/Lock.jpg \
450 | /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Support/LockScreen.app/Contents/Resources/Lock.jpg.bak
451 |
452 | ## Now, copy and convert the SWU icns file into a new Lock.jpg file
453 | ## Note: We are converting it to a png to preserve transparency, but saving it with the .jpg extension so LockScreen.app will recognize it.
454 | ## Also resize the image to 400 x 400 pixels so its not so honkin' huge!
455 | echo "Creating SoftwareUpdate icon as png and converting to Lock.jpg..."
456 | sips -s format png "$swuIcon" --out /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Support/LockScreen.app/Contents/Resources/Lock.jpg \
457 | --resampleWidth 400 --resampleHeight 400
458 |
459 | ## Now, kill/restart the loginwindow process to load the LaunchAgent
460 | echo "Ready to lock screen. Restarting loginwindow process..."
461 | kill -9 $(ps axc | awk '/loginwindow/{print $1}')
462 |
463 | ## Install all available Software Updates
464 | echo "Screen locked. Installing all available Software Updates..."
465 | /usr/sbin/softwareupdate --install --all
466 |
467 | if [ "$?" == "0" ]; then
468 | ## Delete LaunchAgent and reload the Login Window
469 | echo "Deleting the LaunchAgent..."
470 | rm "$PLIST"
471 | sleep 1
472 | ## Put the original Lock.jpg image back where it was, overwriting the SWU Icon image
473 | echo "The rebootsPresent flag was set to 'yes' Replacing Lock.jpg image and immediately rebooting the Mac..."
474 | mv /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Support/LockScreen.app/Contents/Resources/Lock.jpg.bak \
475 | /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Support/LockScreen.app/Contents/Resources/Lock.jpg
476 |
477 | ## Kill the LockScreen app and restart immediately
478 | killall LockScreen
479 | /sbin/shutdown -r now
480 |
481 | else
482 |
483 | echo "There was an error with the installations. Removing the Agent and unlocking the login window..."
484 |
485 | rm "$PLIST"
486 | sleep 1
487 |
488 | mv /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Support/LockScreen.app/Contents/Resources/Lock.jpg.bak \
489 | /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Support/LockScreen.app/Contents/Resources/Lock.jpg
490 |
491 | ## Kill/restart the login window process to return to the login window
492 | kill -9 $(ps axc | awk '/loginwindow/{print $1}')
493 | exit 0
494 | fi
495 |
496 | }
497 |
498 | ## The script starts here
499 |
500 | ## Gather available Software Updates and export to a file
501 | echo "Pulling available Software Updates..."
502 | /usr/sbin/softwareupdate -l > /tmp/SWULIST
503 | echo "Finished pulling available Software Updates into local file"
504 |
505 | echo "Checking to see what updates are available..."
506 | ## Generate list of readable items and installable items from file
507 | readSWUs=$( cat /tmp/SWULIST | awk -F"," '/recommended/{print $2,$1}' | sed -e 's/[0-9]*K \[recommended\][ *]//g;s/\[restart\] */◀ /g' | sed 's/[ ]//g' )
508 | progSWUs=$( cat /tmp/SWULIST | awk -F"," '/recommended/{print $2,$1}' | sed -e 's/[0-9]*K \[recommended\][ *]//g;s/\[restart\] *//g' | sed 's/[ ]//g' )
509 | installSWUs=$( cat /tmp/SWULIST | grep -v 'recommended' | awk -F'\\* ' '/\*/{print $NF}' )
510 |
511 | ## First, make sure there's at least one update from Software Update
512 | if [[ -z "$readSWUs" ]]; then
513 | echo "No pending Software Updates found for this Mac. Exiting..."
514 | exit 0
515 | elif [[ ! -z "$readSWUs" ]] && [[ "$loggedInUser" != "root" ]]; then
516 | echo "Software Updates are available, and a user is logged in. Moving to install..."
517 | buildLists
518 | elif [[ ! -z "$readSWUs" ]] && [[ "$loggedInUser" == "root" ]]; then
519 | if [ "$installAllAtLogin" == "yes" ]; then
520 | echo "SWUs are available, no-one logged in and the installAllAtLogin flag was set. Locking screen and installing all updates..."
521 | startLockScreenAgent
522 | else
523 | echo "SWUs are available, no-one logged in but the installAllAtLogin flag was not set. Exiting..."
524 | exit 0
525 | fi
526 | fi
527 |
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 | {one line to give the program's name and a brief idea of what it does.}
635 | Copyright (C) {year} {name of author}
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | {project} Copyright (C) {year} {fullname}
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------