summaryrefslogtreecommitdiffstats
path: root/abs/core/xymon/xymon.install
blob: ec5e24276f091ab0b1e84c4b2afe8af6727603f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
post_install() {
	. /etc/systemconfig
	if  [ ! -f   /data/srv/xymon/server/ext/ignoreclient.py ]
	then
		echo "#this is a list of hosts to ignore" >  /data/srv/xymon/server/ext/ignoreclient.py
		echo ignorehosts=\"\'ignoreme1\',\'ignoreme2\'\" >> /data/srv/xymon/server/ext/ignoreclient.py
	fi

	if  [ ! -f  /data/srv/httpd/htdocs/failed_func_hosts ]
	then
		touch /data/srv/httpd/htdocs/failed_func_hosts
	fi
	chown nobody:nobody /data/srv/httpd/htdocs/failed_func_hosts
	chmod 777 /data/srv/httpd/htdocs/failed_func_hosts


	sed -i -e "s/localhost/$hostname/" /data/srv/xymon/server/etc/hosts.cfg
	sed -i -e "s/\#/\# func/" /data/srv/xymon/server/etc/hosts.cfg
	sed -i -e "s/localhost/$hostname/" /data/srv/xymon/server/etc/xymonserver.cfg
	chown -R nobody /data/srv/xymon
	chown -R nobody /data/srv/httpd/htdocs/xymon
	chown -R nobody /var/log/hobbit
	chown root /data/srv/xymon/server/bin/xymonping
	chmod +s /data/srv/xymon/server/bin/xymonping
  
  



}

post_upgrade() {
  post_install $1
}

post_remove() {
 rm -f /data/srv/httpd/htdocs/xymon/index.html
}

pre_remove() {
	/bin/true
}
op=$1
shift
$op $*
# vim: ft=sh ts=2