#!/usr/bin/env bash

system_type="$1"

if [ "${system_type}" = "standalone" ]; then
	exit 0

elif [ "${system_type}" = "team" ]; then
    echo "cups"
    echo "pmis"
    echo "extprint"
    echo "postgresql"
    echo "dbmonitor"
    echo "alerter"
    echo "tower-tunnel"

elif [ "${system_type}" = "site-server" ]; then
    echo "l60"
    echo "ramp-monitor"

fi
