#!/usr/share/ucs-test/runner bash
# shellcheck shell=bash
## desc: Check system status with univention-system-check
## tags: [basic, apptest]
## exposure: safe

set -e

tmp="$(mktemp -d)"
trap "rm -rf '$tmp'" EXIT
cd "$tmp"
curl -OOs https://updates.software-univention.de/download/univention-system-check/univention-system-check.tar.gz{,.gpg}
gpgv \
  --keyring /usr/share/keyrings/univention-archive-key-ucs-5x.gpg \
  univention-system-check.tar.gz.gpg \
  univention-system-check.tar.gz
tar -xzf  univention-system-check.tar.gz
python ./univention-system-check
