#!/usr/bin/env bash

. /usr/share/dosis2/bin/shell-support-functions

if [ "${1}" = "site-server" ]; then
    echo "SITE_SERVER"
elif [[ "${1}" =~ .*c60.* ]]; then
    echo "C60"
elif [[ "${1}" =~ .*l60.* ]]; then
    echo "L60"
elif [[ "${1}" =~ .*u60.* ]]; then
    echo "U60"
else
    abort 2 "Unsupported system type: ${1}"
fi
