photoprism/scripts/dist/dist-upgrade.sh

22 lines
417 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2022-02-02 16:31:03 +00:00
PATH="/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/scripts:$PATH"
# Abort if not executed as root.
if [[ $(id -u) != "0" ]]; then
echo "Usage: run ${0##*/} as root" 1>&2
2022-02-02 16:31:03 +00:00
exit 1
fi
# fail on errors
set -eu
# disable user interactions
export DEBIAN_FRONTEND="noninteractive"
export TMPDIR="/tmp"
apt-get -y update
apt-get -y dist-upgrade
apt-get -y autoremove
2022-02-18 16:40:58 +00:00
echo "Done."