13 lines
376 B
Bash
Executable File
13 lines
376 B
Bash
Executable File
#!/bin/sh
|
|
echo $@ > /tmp/panel.sh.log
|
|
|
|
CONFIG=/etc/asterisk/alarmreceiver.conf
|
|
DIR=$(/bin/grep eventspooldir ${CONFIG} 2>/dev/null|awk -F= '{print $2}' | sed -e 's/\ *//')
|
|
cd /var/www/html/halmon
|
|
|
|
[ -z "${DIR}" ] && echo "Cant find Alarm Dir in Config ${CONFIG}" && exit 1;
|
|
|
|
for i in $(ls -1 ${DIR}/event-* 2>/dev/null); do
|
|
/usr/bin/php index.php event:load --file=${i}
|
|
done
|