summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/validate_cmd.rb
diff options
context:
space:
mode:
authorTravis Fields <travis@puppetlabs.com>2014-10-28 16:46:16 -0700
committerTravis Fields <travis@puppetlabs.com>2014-10-29 11:47:57 -0700
commit328aae223f28881746f45d76c778ddbfa3adce39 (patch)
tree21b60b8762d81110d100006737ab5e55b5b2bc0d /lib/puppet/parser/functions/validate_cmd.rb
parentcfc79e9831fb530b4a34bb79db119969b3a166b3 (diff)
downloadpuppet-stdlib-328aae223f28881746f45d76c778ddbfa3adce39.tar.gz
puppet-stdlib-328aae223f28881746f45d76c778ddbfa3adce39.tar.bz2
Add proper exception catching of Windows errors when CreateProcess does not succeed
Diffstat (limited to 'lib/puppet/parser/functions/validate_cmd.rb')
-rw-r--r--lib/puppet/parser/functions/validate_cmd.rb3
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