mirror of
https://lab.it.hs-hannover.de/misc/postfix-stats.git
synced 2024-11-27 22:37:55 +01:00
14 lines
169 B
Bash
14 lines
169 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Go into appropriate directory
|
||
|
cd `dirname $0`
|
||
|
|
||
|
# Load settings
|
||
|
. ./settings.sh
|
||
|
|
||
|
# Run the collector
|
||
|
while true; do
|
||
|
./collector.sh;
|
||
|
sleep 30;
|
||
|
done
|