#!/usr/share/ucs-test/runner bash
# shellcheck shell=bash
## desc: Checking, whether LSB distributor ID is set to Ucs
## bugs: [50634]
## tags: [basic,apptest]
## packages: [lsb-release]
## exposure: safe

id="$(lsb_release -is)"
case "$id" in
Univention) ;; # UCS <=5.0
Ucs) ;; # UCS >=5.1
*)
	echo "The LSB distributor's ID is set to '$id'"
	exit 110
	;;
esac

# vim: set ft=sh :
