From 52fd60c9f65025d32be275d98bcc2c88b3408de2 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Fri, 27 Mar 2015 15:24:02 -0400 Subject: 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 --- lib/facter/ssh_version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3