mirror of
https://github.com/Icinga/icinga2.git
synced 2025-11-02 12:45:11 +01:00
9 lines
118 B
Bash
Executable File
9 lines
118 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echoerr() { echo "$@" 1>&2; }
|
|
|
|
foo=$(shuf -i 0-3 -n 1)
|
|
echo "flapme: $foo"
|
|
echoerr "stderr test"
|
|
exit $foo
|