#!/usr/bin/env bash

system_type="$1"

if [ "${system_type}" = "standalone" ]; then
    echo "apache"
    echo "memcached"
    echo "cups"
    echo "openvpn"
    echo "l60"
    echo "pmis"
    echo "extprint"
    echo "postgresql"
    echo "dbmonitor"
    echo "alerter"
    echo "dosis-cache-updater"
    echo "tower-tunnel"
    echo "ramp-monitor"

elif [ "${system_type}" = "team" ]; then
    echo "apache"
    echo "memcached"
    echo "openvpn"
    echo "l60"
    echo "dosis-cache-updater"
    echo "ramp-monitor"

elif [ "${system_type}" = "site-server" ]; then
    echo "apache"
    echo "memcached"
    echo "cups"
    echo "openvpn"
    echo "pmis"
    echo "extprint"
    echo "postgresql"
    echo "dbmonitor"
    echo "alerter"
    echo "dosis-cache-updater"
    echo "tower-tunnel"

fi
