mirror of https://github.com/Icinga/icinga2.git
Added check_random plugin.
This commit is contained in:
parent
80bec5fcd4
commit
6c153d8e8e
|
@ -0,0 +1,10 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
printf("check_random | test=1\n");
|
||||||
|
|
||||||
|
srand(getpid());
|
||||||
|
|
||||||
|
return rand() % 4;
|
||||||
|
}
|
Loading…
Reference in New Issue