#!/usr/bin/env bash
# Update only LogGraphic, leaving system-wide upgrade decisions to the user.
set -euo pipefail
if (( EUID != 0 )); then
    exec sudo -- "$0" "$@"
fi
apt-get update
apt-get install --only-upgrade loggraphic
