postfix-stats/collector_runner.sh

14 lines
169 B
Bash
Raw Permalink Normal View History

2018-05-03 19:58:08 +02:00
#!/bin/bash
# Go into appropriate directory
cd `dirname $0`
# Load settings
. ./settings.sh
# Run the collector
while true; do
./collector.sh;
sleep 30;
done