mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
Added check_random plugin.
This commit is contained in:
parent
80bec5fcd4
commit
6c153d8e8e
10
check_random/check_random.c
Normal file
10
check_random/check_random.c
Normal file
@ -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…
x
Reference in New Issue
Block a user