Puppet Function: deferlib::cmd
- Defined in:
- functions/cmd.pp
- Function type:
- Puppet Language
Summary
returns output of deferred shell command execution or options[else] if commmand exit code not 0 or output does not match options[match]Overview
34 35 36 37 38 |
# File 'functions/cmd.pp', line 34
function deferlib::cmd (
Hash $options,
) {
Deferred('deferlib::cmd_', [$options])
}
|