ca94353907ef74be7762cfb93ce6b849ccea7790
[monitor.git] / rt3 / monitor-rt3.init
1 #!/bin/bash
2 #
3 # priority: 850
4 #
5 # Manage settings for the Zabbix installtion and 
6 #       other monitor-related things
7 #
8 # Stephen Soltesz <soltesz@cs.princeton.edu>
9 # Copyright (C) 2008 The Trustees of Princeton University
10 #
11 # $Id$
12 #
13
14 # Source function library and configuration
15 . /etc/plc.d/functions
16 . /etc/plc.d/monitor.functions
17 . /etc/planetlab/plc_config
18 local_config=/etc/planetlab/configs/site.xml
19
20 MONITORPATH=/usr/share/monitor
21
22 # Be verbose
23 set -x
24
25 # Default locations
26 PGDATA=/var/lib/pgsql/data
27 postgresql_conf=$PGDATA/postgresql.conf
28 pghba_conf=$PGDATA/pg_hba.conf
29
30 # Export so that we do not have to specify -p to psql invocations
31 export PGPORT=$PLC_DB_PORT
32
33
34 RT3_DB_USER="rt3user"
35 RT3_DB_NAME="rt3"
36
37 WROTE_PG_CONFIG=
38
39 if [ -z "$PLC_RT_IP" ] ; then
40         PLC_RT_IP=$( gethostbyname $PLC_RT_HOST )
41 fi
42
43
44 # TODO: make values re-configurable...  this may be an issue with RT's db, though.
45 function update_config ()
46 {
47         pattern=$1
48         with=$2
49         file=$3
50         sed -i -e "s/$pattern/$with/g" $file
51 }
52
53 function check_rt_siteconfig ()
54 {
55         tmp_siteconfig=$(mktemp)
56         tmp_initialdata=$(mktemp)
57         
58         # if the templates are newer than the actual config, then replace them.
59         if [ $MONITORPATH/rt3/RT_SiteConfig.pm -nt /etc/rt3/RT_SiteConfig.pm ] ;
60         then
61                 # copy templates
62                 cp -f $MONITORPATH/rt3/RT_SiteConfig.pm $tmp_siteconfig
63                 cp -f $MONITORPATH/rt3/initialdata $tmp_initialdata
64
65                 # setup RT_SiteConfig.pm
66                 update_config PLC_NAME "$PLC_NAME" $tmp_siteconfig
67                 update_config PLC_RT_HOSTNAME $PLC_RT_HOST $tmp_siteconfig
68
69                 update_config RT_DB_NAME $RT3_DB_NAME $tmp_siteconfig
70                 update_config RT_DB_USER $RT3_DB_USER $tmp_siteconfig
71                 update_config RT_DB_PASSWORD $PLC_MONITOR_DBPASSWORD $tmp_siteconfig
72
73                 # setup initialdata
74                 update_config PLC_RT_HOSTNAME $PLC_RT_HOST $tmp_initialdata
75
76                 # copy to live configuration
77                 cp -f $tmp_siteconfig /etc/rt3/RT_SiteConfig.pm 
78                 cp -f $tmp_initialdata /etc/rt3/initialdata 
79                 chmod 644 /etc/rt3/RT_SiteConfig.pm 
80                 chmod 644 /etc/rt3/initialdata 
81
82                 rm -f $tmp_siteconfig
83                 rm -f $tmp_initialdata
84         fi
85 }
86
87 function check_rt_pghba ()
88 {
89         NAME=$RT3_DB_NAME
90         USER=$RT3_DB_USER
91         CONF=$PGDATA/pg_hba.conf.d/${NAME}.conf
92         PATTERN="host all postgres 127.0.0.1/32 trust"
93
94         if ! grep -q "$PATTERN" $CONF ; then
95                 #### SETUP ACCESS from postgres user to run init for the first time.
96                 echo "$PATTERN" >> $CONF
97                 WROTE_PG_CONFIG="true"
98         fi
99
100 }
101
102 function check_rt_aliases ()
103 {
104
105         if ! grep -q "rt-mailgate --queue support" /etc/aliases ; 
106         then 
107                 sed -i -e "s/^support.*postmaster//g" /etc/aliases
108                 sed -i -e "s/^security.*root//g" /etc/aliases
109         cat <<EOF >> /etc/aliases
110 # added by RT init scripts for default queues.
111 support: "|/usr/sbin/rt-mailgate --queue support --action correspond --url http://localhost/rt3/"
112 monitor: "|/usr/sbin/rt-mailgate --queue monitor --action correspond --url http://localhost/rt3/"
113 security: "|/usr/sbin/rt-mailgate --queue security --action correspond --url http://localhost/rt3/"
114 legal: "|/usr/sbin/rt-mailgate --queue legal --action correspond --url http://localhost/rt3/"
115 EOF
116                 /usr/bin/newaliases
117         fi
118
119 }
120
121 function check_rt_init ()
122 {
123         if [ ! -f /etc/rt3/setup.finished ] ; then
124                 /usr/sbin/rt-setup-database --action init --dba postgres
125                 for f in $MONITORPATH/rt3/rtinit.d/*.pl ; do 
126                         /usr/sbin/rt-setup-database --action insert --dba postgres --datafile $f
127                 done
128                 touch /etc/rt3/setup.finished
129
130         ###Last DB adjustments
131         #setup custom field values
132         cat <<EOF | /usr/bin/psql -U postgres -d $RT3_DB_NAME
133 INSERT INTO objectcustomfields (customfield, objectid, sortorder, creator, lastupdatedby) VALUES (1,1,1,12,12);
134 INSERT INTO customfields (name, "type", maxvalues, repeated, pattern, lookuptype, description, sortorder, creator, lastupdatedby,disabled) VALUES ('Problem Category', 'Select',1,0,'(?#Mandatory).','RT::Queue-RT::Ticket','How severe this problem is',0,12,12,0);
135 EOF
136         cat <<EOF | /usr/bin/psql -U postgres -d $RT3_DB_NAME
137 INSERT INTO customfieldvalues (customfield, name, sortorder, creator, lastupdatedby) VALUES (1,'Critical',0,12,12);
138 INSERT INTO customfieldvalues (customfield, name, sortorder, creator, lastupdatedby) VALUES (1,'Major',1,12,12);
139 INSERT INTO customfieldvalues (customfield, name, sortorder, creator, lastupdatedby) VALUES (1,'Minor',2,12,12);
140 INSERT INTO customfieldvalues (customfield, name, sortorder, creator, lastupdatedby) VALUES (1,'Trivial',3,12,12);
141 EOF
142
143 }
144
145 check_rt_sendmail ()
146 {
147         tmp_sendmailmc=$(mktemp)
148         
149         # if the templates is newer than the processed config, then update it
150         if grep -q "Addr=127.0.0.1," /etc/mail/sendmail.mc  ; 
151         then
152                 # copy templates
153                 cp -f /etc/mail/sendmail.mc $tmp_sendmailmc
154
155                 # setup initialdata
156                 update_config "Addr=127.0.0.1," "" $tmp_sendmailmc
157
158                 # copy to live configuration
159                 cp -f $tmp_sendmailmc /etc/mail/sendmail.mc
160                 rm -f $tmp_sendmailmc
161
162                 # edit /etc/mail/access to add local IP
163                 if ! grep "$PLC_RT_IP" /etc/mail/access ; then
164                         echo "$PLC_RT_IP                RELAY" >> /etc/mail/access
165                         makemap hash /etc/mail/access.db < /etc/mail/access
166                 fi
167                 if [ !  -f /etc/smrsh/rt-mailgate ] ; then
168                         ln -s /usr/sbin/rt-mailgate /etc/smrsh/rt-mailgate
169                 fi
170                 if ! grep "$PLC_RT_HOST" /etc/mail/local-host-names ; then
171                         # edit /etc/mail/local-host-names
172                         echo "$PLC_RT_HOST" >> /etc/mail/local-host-names
173                 fi
174                 m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf
175                 service sendmail restart
176         fi
177
178
179 }
180
181 if [ "$PLC_RT_ENABLED" != "1" ] ; then
182     exit 0
183 fi
184
185 case "$1" in
186         start)
187                 MESSAGE=$"Bootstrap RT (please wait...)"
188                 dialog "$MESSAGE"
189
190                 check_pg_hba $RT3_DB_NAME $RT3_DB_USER
191                 #check_user_and_db $RT3_DB_NAME $RT3_DB_USER
192                 check_rt_siteconfig
193                 check_rt_pghba
194                 if [ -n "$WROTE_PG_CONFIG" ] ; then
195                         # NOTE: restart db to enable access by users granted above.
196                         service plc restart postgresql
197                         MESSAGE=$"Bootstrap RT 2 (please wait...)"
198                         dialog "$MESSAGE"
199                 fi
200                 check_rt_aliases
201                 check_rt_init
202                 check_rt_sendmail
203
204                 result "$MESSAGE"
205         ;;
206
207
208         delete)
209                 MESSAGE=$"Deleting databases..."
210                 dialog "$MESSAGE"
211
212                 service plc stop httpd
213
214                 dropdb -U postgres $RT3_DB_NAME
215                 dropuser -U postgres $RT3_DB_USER
216                 rm -f /etc/rt3/RT_SiteConfig.pm
217                 rm -f /etc/rt3/initialdata
218                 PATTERN="host all postgres 127.0.0.1/32 trust"
219                 sed -i -e "s|$PATTERN||g" $PGDATA/pg_hba.conf.d/${RT3_DB_NAME}.conf
220
221                 sed -i -e "s/.*mailgate.*//g" /etc/aliases
222                 rm -f /etc/rt3/setup.finished
223
224                 sed -i -e "s/Port=smtp, Name=MTA/Port=smtp,Addr=127.0.0.1, Name=MTA/g" /etc/mail/sendmail.mc
225                 service plc start httpd
226
227                 result "$MESSAGE"
228         ;;
229
230         stop)
231                 MESSAGE=$"Stopping RT"
232                 dialog "$MESSAGE"
233
234                 # TODO: is there anything to stop?
235
236                 result "$MESSAGE"
237         ;;
238 esac
239
240 exit $ERRORS