mirror of
https://lab.it.hs-hannover.de/misc/postfix-stats.git
synced 2025-07-03 10:22:26 +02:00
14 lines
169 B
Bash
Executable File
14 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Go into appropriate directory
|
|
cd `dirname $0`
|
|
|
|
# Load settings
|
|
. ./settings.sh
|
|
|
|
# Run the collector
|
|
while true; do
|
|
./collector.sh;
|
|
sleep 30;
|
|
done
|