diff options
author | Travis Fields <travis@puppetlabs.com> | 2014-10-28 16:46:16 -0700 |
---|---|---|
committer | Travis Fields <travis@puppetlabs.com> | 2014-10-29 11:47:57 -0700 |
commit | 328aae223f28881746f45d76c778ddbfa3adce39 (patch) | |
tree | 21b60b8762d81110d100006737ab5e55b5b2bc0d | |
parent | cfc79e9831fb530b4a34bb79db119969b3a166b3 (diff) | |
download | puppet-stdlib-328aae223f28881746f45d76c778ddbfa3adce39.tar.gz puppet-stdlib-328aae223f28881746f45d76c778ddbfa3adce39.tar.bz2 |
Add proper exception catching of Windows errors when CreateProcess does not succeed
-rw-r--r-- | lib/puppet/parser/functions/validate_cmd.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/validate_cmd.rb b/lib/puppet/parser/functions/validate_cmd.rb index 652aa55..c855c7e 100644 --- a/lib/puppet/parser/functions/validate_cmd.rb +++ b/lib/puppet/parser/functions/validate_cmd.rb @@ -42,6 +42,9 @@ module Puppet::Parser::Functions rescue Puppet::ExecutionFailure => detail msg += "\n#{detail}" raise Puppet::ParseError, msg + rescue SystemCallError => detail + msg += "\nWin32::Process::SystemCallError #{detail}" + raise Puppet::ParseError, msg ensure tmpfile.unlink end |