mirror of
https://github.com/Luzifer/arch-update.git
synced 2024-12-20 11:01:16 +00:00
Initial version
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
commit
aea3b43872
1 changed files with 175 additions and 0 deletions
175
arch_update.sh
Executable file
175
arch_update.sh
Executable file
|
@ -0,0 +1,175 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
DRYRUN=0
|
||||||
|
LOGLINES=()
|
||||||
|
REBOOT=0
|
||||||
|
REQ_REBOOT=(linux linux-firmware systemd)
|
||||||
|
RESSVC=0
|
||||||
|
|
||||||
|
COLOR_RED="\033[0;31m"
|
||||||
|
COLOR_GREEN="\033[0;32m"
|
||||||
|
COLOR_CYAN="\033[0;36m"
|
||||||
|
COLOR_YELLOW="\033[0;33m"
|
||||||
|
COLOR_PLAIN="\033[0m"
|
||||||
|
|
||||||
|
# Check we do have root access
|
||||||
|
if [ $(id -u) -ne 0 ]; then
|
||||||
|
echo "Escalating to root..."
|
||||||
|
exec sudo $0 "$@"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Load defaults from defaults file
|
||||||
|
[ -f /etc/default/arch_update ] && source /etc/default/arch_update
|
||||||
|
|
||||||
|
function error() { # ( message )
|
||||||
|
local msg="$@"
|
||||||
|
log "$msg" "${COLOR_RED}"
|
||||||
|
}
|
||||||
|
|
||||||
|
function feature() { # ( name, enabled )
|
||||||
|
local v
|
||||||
|
[ $2 -eq 1 ] && v="${COLOR_GREEN}enabled${COLOR_PLAIN}" || v="${COLOR_YELLOW}disabled${COLOR_PLAIN}"
|
||||||
|
echo "$1 $v"
|
||||||
|
}
|
||||||
|
|
||||||
|
function inArray() { # ( keyOrValue, arrayKeysOrValues )
|
||||||
|
local e
|
||||||
|
for e in "${@:2}"; do
|
||||||
|
[[ $e == "$1" ]] && return 0
|
||||||
|
done
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
function info() { # ( message )
|
||||||
|
local msg="$@"
|
||||||
|
log "$msg" "${COLOR_CYAN}"
|
||||||
|
}
|
||||||
|
|
||||||
|
function log() { # ( message, color )
|
||||||
|
local s
|
||||||
|
local color="${2:-${COLOR_PLAIN}}"
|
||||||
|
s="[$(date)] $1"
|
||||||
|
echo -e "${color}${s}${COLOR_PLAIN}" >&2
|
||||||
|
LOGLINES+=("$s")
|
||||||
|
}
|
||||||
|
|
||||||
|
function mailResult() { # ( )
|
||||||
|
IFS=$'\n'
|
||||||
|
echo "${LOGLINES[*]}" >>/var/log/arch_update.log
|
||||||
|
}
|
||||||
|
|
||||||
|
function main() { # ( )
|
||||||
|
log "Starting arch_update on $(hostname): $(feature "dry-run" $DRYRUN), $(feature "reboot" $REBOOT), $(feature "service-restart" $RESSVC)"
|
||||||
|
|
||||||
|
# Collect packages to be updated
|
||||||
|
log "Collecting packages..."
|
||||||
|
packages=($(checkupdates | awk '{print $1}' || true))
|
||||||
|
|
||||||
|
if [ ${#packages[@]} -eq 0 ]; then
|
||||||
|
success "Nothing to do, exiting now."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
info "${#packages[@]} packages to update: ${packages[@]}"
|
||||||
|
|
||||||
|
# Collect services to be restarted
|
||||||
|
log "Collecting affected services..."
|
||||||
|
services=()
|
||||||
|
|
||||||
|
for package in "${packages[@]}"; do
|
||||||
|
if (systemctl list-units "${package}.service" | grep -q "^${package}.service .* active running .*$"); then
|
||||||
|
services+=("${package}.service")
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ ${#services[@]} -gt 0 ]; then
|
||||||
|
info "${#services[@]} services to restart: ${services[@]}"
|
||||||
|
else
|
||||||
|
info "No services need to be restarted"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check whether system should be rebooted
|
||||||
|
log "Checking whether reboot is adviced..."
|
||||||
|
needs_reboot=()
|
||||||
|
for pkg in "${REQ_REBOOT[@]}"; do
|
||||||
|
if (inArray "${pkg}" "${packages[@]}"); then
|
||||||
|
needs_reboot+=("${pkg}")
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ ${#needs_reboot[@]} -gt 0 ]; then
|
||||||
|
warn "Reboot is adviced for: ${needs_reboot[@]}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Ensure dry-run is met
|
||||||
|
[ ${DRYRUN} -eq 0 ] || {
|
||||||
|
success "Dry-Run enabled, not taking action!"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# Execute sync of repos
|
||||||
|
log "Syncing repos..."
|
||||||
|
pacman -Syy --noconfirm
|
||||||
|
|
||||||
|
# Update packages
|
||||||
|
log "Upgrading packages..."
|
||||||
|
pacman -S --noconfirm "${packages[@]}"
|
||||||
|
|
||||||
|
# If enabled and required do a reboot
|
||||||
|
if [ ${#needs_reboot[@]} -gt 0 ]; then
|
||||||
|
if [ $REBOOT -eq 1 ]; then
|
||||||
|
info "Reboot will be executed now"
|
||||||
|
reboot
|
||||||
|
exit 0 # Do not execute more of this script
|
||||||
|
else
|
||||||
|
warn "Reboot is strongly suggested but auto-reboot is disabled"
|
||||||
|
date +%s >/tmp/arch_update_needs_reboot
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Restart affected services
|
||||||
|
if [ $RESSVC -eq 1 ]; then
|
||||||
|
for svc in "${services[@]}"; do
|
||||||
|
log "Restarting service ${svc}"
|
||||||
|
systemctl restart "${svc}" || error "Restart of ${svc} failed and needs attention"
|
||||||
|
done
|
||||||
|
else
|
||||||
|
warn "Not restarting services as requested"
|
||||||
|
fi
|
||||||
|
|
||||||
|
success "Everything finished"
|
||||||
|
}
|
||||||
|
|
||||||
|
function success() { # ( message )
|
||||||
|
local msg="$@"
|
||||||
|
log "$msg" "${COLOR_GREEN}"
|
||||||
|
}
|
||||||
|
|
||||||
|
function warn() { # ( message )
|
||||||
|
local msg="$@"
|
||||||
|
log "$msg" "${COLOR_YELLOW}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Argument parsing
|
||||||
|
while getopts ":nrs" o; do
|
||||||
|
case "${o}" in
|
||||||
|
n)
|
||||||
|
DRYRUN=1
|
||||||
|
;;
|
||||||
|
r)
|
||||||
|
REBOOT=1
|
||||||
|
;;
|
||||||
|
s)
|
||||||
|
RESSVC=1
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Usage: $0 [-nrs]" >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift $((OPTIND - 1))
|
||||||
|
|
||||||
|
trap mailResult EXIT
|
||||||
|
main
|
Loading…
Reference in a new issue