#!/usr/share/ucs-test/runner bash
# shellcheck shell=bash
## desc: Check univention-ssh exit code
## bugs: [17874]
## tags: [univention]
## packages: [univention-ssh]
## exposure: safe

# shellcheck source=../../lib/base.sh
. "$TESTLIBPATH/base.sh" || exit 137

univention-ssh "$tests_root_pwdfile" "root@${hostname}.${domainname}" exit 110
if [ $? -eq 110 ]
then
	exit 100 # OK
else
	exit 110 # ERROR
fi
# vim:set ft=sh:
