mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 19:16:48 +00:00
12 lines
566 B
Bash
12 lines
566 B
Bash
#!/bin/bash -e -o pipefail
|
|
################################################################################
|
|
## File: configure-auto-updates.sh
|
|
## Desc: Disabling automatic updates
|
|
################################################################################
|
|
|
|
sudo softwareupdate --schedule off
|
|
defaults write com.apple.SoftwareUpdate AutomaticDownload -int 0
|
|
defaults write com.apple.SoftwareUpdate CriticalUpdateInstall -int 0
|
|
defaults write com.apple.commerce AutoUpdate -bool false
|
|
defaults write com.apple.SoftwareUpdate AutomaticCheckEnabled -bool false
|