Use single script for brew periodic tasks

This commit is contained in:
T. R. Bernstein
2024-06-29 01:54:15 +02:00
committed by T. R. Bernstein
parent 8d2b7627d1
commit 582ce875fb

View File

@@ -120,10 +120,25 @@ function createBrewCallerScript() {
umask 002
"$(getHomebrewRepositoryPath)/bin/brew" "\$@"
BREWCALLER
chown ${username}:admin ${brewCallerPath}
chown root:admin ${brewCallerPath}
chmod ug+x,o-x ${brewCallerPath}
}
function createBrewPeriodicScript() {
ensureLocalBinFolder
local scriptPath="/usr/local/bin/brew-periodic"
[ -f "${scriptPath}" ] && rm "${scriptPath}"
cat <<- BREWCALLER > ${scriptPath}
#!/usr/bin/env zsh
local brew='/usr/local/bin/brew'
\$brew update
\$brew upgrade --greedy
\$brew cleanup
BREWCALLER
chown root:admin ${scriptPath}
chmod ug=rx,o=r ${scriptPath}
}
function installHomebrewCore() {
export NONINTERACTIVE=1
[ ! -d $(getHomebrewRepositoryPath) ] || return
@@ -146,8 +161,7 @@ function createLaunchDaemonsPlist() {
<string>${launcherName}</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/brew</string>
<string>${brewCommand}</string>
<string>/usr/local/bin/brew-periodic</string>
</array>
<key>StartInterval</key>
<integer>1800</integer>
@@ -166,8 +180,7 @@ function createLaunchDaemonsPlist() {
}
function installHomebrewUpdater() {
createLaunchDaemonsPlist brew-updater update
createLaunchDaemonsPlist brew-upgrader upgrade
createLaunchDaemonsPlist brew-periodic
return
}
@@ -180,7 +193,8 @@ function configure_system() {
ensureHomebrewLogDirectory || return 14
indicateActivity 'Install Homebrew core' installHomebrewCore || return 15
indicateActivity 'Create brew caller script' createBrewCallerScript || return 16
indicateActivity 'Install Homebrew updater' installHomebrewUpdater || return 17
indicateActivity 'Create brew periodic script' createBrewPeriodicScript || return 17
indicateActivity 'Install Homebrew updater' installHomebrewUpdater || return 18
}
function getExecPrerequisites() {