#!/bin/bash # # priority: 850 # # Manage settings for the Zabbix installtion and # other monitor-related things # # Stephen Soltesz # Copyright (C) 2008 The Trustees of Princeton University # # $Id$ # # Source function library and configuration . /etc/plc.d/functions . /etc/plc.d/monitor.functions . /etc/planetlab/plc_config local_config=/etc/planetlab/configs/site.xml MONITORPATH=/usr/share/monitor # Be verbose set -x # Default locations PGDATA=/var/lib/pgsql/data postgresql_conf=$PGDATA/postgresql.conf pghba_conf=$PGDATA/pg_hba.conf # Export so that we do not have to specify -p to psql invocations export PGPORT=$PLC_DB_PORT RT3_DB_USER="rt3user" RT3_DB_NAME="rt3" WROTE_PG_CONFIG= if [ -z "$PLC_MONITOR_IP" ] ; then PLC_MONITOR_IP=$( gethostbyname $PLC_MONITOR_HOST ) fi # TODO: make values re-configurable... this may be an issue with RT's db, though. function update_config () { pattern=$1 with=$2 file=$3 sed -i -e "s/$pattern/$with/g" $file } function check_rt_siteconfig () { tmp_siteconfig=$(mktemp) tmp_initialdata=$(mktemp) # if the templates are newer than the actual config, then replace them. if [ $MONITORPATH/rt3/RT_SiteConfig.pm -nt /etc/rt3/RT_SiteConfig.pm ] ; then # copy templates cp -f $MONITORPATH/rt3/RT_SiteConfig.pm $tmp_siteconfig cp -f $MONITORPATH/rt3/initialdata $tmp_initialdata # setup RT_SiteConfig.pm update_config PLC_NAME "$PLC_NAME" $tmp_siteconfig update_config PLC_RT_HOSTNAME $PLC_RT_HOST $tmp_siteconfig update_config RT_DB_NAME $RT3_DB_NAME $tmp_siteconfig update_config RT_DB_USER $RT3_DB_USER $tmp_siteconfig update_config RT_DB_PASSWORD $PLC_MONITOR_DBPASSWORD $tmp_siteconfig # setup initialdata update_config PLC_RT_HOSTNAME $PLC_RT_HOST $tmp_initialdata # copy to live configuration cp -f $tmp_siteconfig /etc/rt3/RT_SiteConfig.pm cp -f $tmp_initialdata /etc/rt3/initialdata rm -f $tmp_siteconfig rm -f $tmp_initialdata fi } function check_rt_pghba () { NAME=$RT3_DB_NAME USER=$RT3_DB_USER CONF=$PGDATA/pg_hba.conf.d/${NAME}.conf PATTERN="host all postgres 127.0.0.1/32 trust" if ! grep -q "$PATTERN" $CONF ; then #### SETUP ACCESS from postgres user to run init for the first time. echo "$PATTERN" >> $CONF fi } function check_rt_aliases () { if ! grep -q "rt-mailgate --queue support" /etc/aliases ; then sed -i -e "s/^support.*postmaster//g" /etc/aliases sed -i -e "s/^security.*postmaster//g" /etc/aliases cat <> /etc/aliases # added by RT init scripts for default queues. support: "|/usr/sbin/rt-mailgate --queue support --action correspond --url http://localhost/rt3/" monitor: "|/usr/sbin/rt-mailgate --queue monitor --action correspond --url http://localhost/rt3/" security: "|/usr/sbin/rt-mailgate --queue security --action correspond --url http://localhost/rt3/" legal: "|/usr/sbin/rt-mailgate --queue legal --action correspond --url http://localhost/rt3/" EOF /usr/bin/newaliases fi } function check_rt_init () { if [ ! -f /etc/rt3/setup.finished ] ; then /usr/sbin/rt-setup-database --action init --dba postgres touch /etc/rt3/setup.finished ###Last DB adjustments #set defaultduein to 1 for support queue cat <