Created
February 27, 2017 18:46
-
-
Save neilhwatson/b66ccd8bd1b4ff6187f6e08daf5de46f to your computer and use it in GitHub Desktop.
No error either way
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body common control | |
{ | |
bundlesequence => { | |
"main", | |
}; | |
} | |
bundle agent main | |
{ | |
methods: | |
"any" usebundle => test; | |
} | |
bundle agent test{ | |
commands: | |
"/bin/false || /bin/true" | |
contain => in_shell; | |
commands: | |
"/bin/true || /bin/true" | |
contain => in_shell; | |
} | |
body contain in_shell | |
{ | |
useshell => "true"; # canonical "useshell" but this is backwards-compatible | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment