mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
8 lines
342 B
Bash
Executable File
8 lines
342 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# 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 |