From: Micah Anderson Date: Fri, 27 Mar 2015 19:24:02 +0000 (-0400) Subject: Given that ssh -V prints the info we want on stderr, made it so we are 100% sure... X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=52fd60c9f65025d32be275d98bcc2c88b3408de2;p=puppet-sshd.git Given that ssh -V prints the info we want on stderr, made it so we are 100% sure we are only parsing the expected string --- diff --git a/lib/facter/ssh_version.rb b/lib/facter/ssh_version.rb index eb157ce..51d8a00 100644 --- a/lib/facter/ssh_version.rb +++ b/lib/facter/ssh_version.rb @@ -1,5 +1,5 @@ Facter.add("ssh_version") do setcode do - ssh_version = Facter::Util::Resolution.exec('ssh -V 2>&1').chomp.split(' ')[0].split('_')[1] + ssh_version = Facter::Util::Resolution.exec('ssh -V 2>&1 1>/dev/null').chomp.split(' ')[0].split('_')[1] end end