6 lines
134 B
Bash
Executable File
6 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
# Sleeps longer than the configured timeout to demonstrate timeout handling.
|
|
sleep 30
|
|
echo "should never reach here"
|
|
exit 0
|