#!/bin/bash
. /etc/systemconfig
if [ $SystemType = Master_backend -o  $SystemType = Standalone ]
then
   pacman -S --noconfirm xymonserver
   pacman -S --noconfirm supplemental-web
   add_service.sh certmaster
   add_service.sh funcd
   add_service.sh xymon-server
else
	echo "This service is only available for StandAlone or Master_backend LinHES systems"

fi