summaryrefslogtreecommitdiffstats
path: root/abs/core/LinHES-system/install_supplemental_service.sh
blob: d33cb185ded7fd61d9a52c576766d2ecef756b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
. /etc/systemconfig
if [ $SystemType = Master_backend -o  $SystemType = Standalone ]
then
   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