blob: c4744479090f5a34ccbd6319dacf7a1a7e199bed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/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
|