1body common control
2{
3    bundlesequence =>{ main };
4}
5
6###########################################################
7
8bundle agent pre_evaluated
9{
10  vars:
11    "none" string => readfile("/tmp/supercalifragilisticexpialidocious", 33);
12}
13
14bundle agent main
15{
16  meta:
17
18    "description"
19      string => "Test that readfile() does not throw an error during pre-eval if the file does not exist.";
20
21  reports:
22    "Hello World!";
23}
24