mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-01-23 21:48:55 -05:00
10 lines
233 B
Bash
Executable File
10 lines
233 B
Bash
Executable File
#!/bin/bash
|
|
# A script to provide background noise so Travis doesn't kill us due to inactivity
|
|
# written by Andrew Bauer
|
|
|
|
while true; do
|
|
echo "$(date) - Please don't kill us Mr. Travis, we are still running!"
|
|
sleep 30s
|
|
done
|
|
|