mirror of https://github.com/Icinga/icinga2.git
6 lines
65 B
Bash
6 lines
65 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
foo=$(shuf -i 0-3 -n 1)
|
||
|
echo "flapme: $foo"
|
||
|
exit $foo
|