photoprism/scripts/dist/dist-upgrade.sh

20 lines
360 B
Bash
Raw Normal View History

#!/bin/bash
2022-02-02 16:31:03 +00:00
# abort if not executed as root
if [[ $(/usr/bin/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"
/usr/bin/apt-get -y update
/usr/bin/apt-get -y dist-upgrade
/usr/bin/apt-get -y autoremove
2022-02-18 16:40:58 +00:00
echo "Done."