From 34bcb5c3d607d580a19ccba06fe43b6d02a8eb00 Mon Sep 17 00:00:00 2001 From: mh Date: Fri, 25 Jul 2008 11:17:06 +0000 Subject: fixed fact as centos doesn't seem to add the hostname to the hostkey, fixed package requirement git-svn-id: https://svn/ipuppet/trunk/modules/sshd@1994 d66ca3ae-40d7-4aa7-90d4-87d79ca94279 --- plugins/facter/sshkeys.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'plugins/facter/sshkeys.rb') diff --git a/plugins/facter/sshkeys.rb b/plugins/facter/sshkeys.rb index abf838c..0e94a03 100644 --- a/plugins/facter/sshkeys.rb +++ b/plugins/facter/sshkeys.rb @@ -6,10 +6,11 @@ value = nil filepath = File.join(dir,file) if FileTest.file?(filepath) - regex = %r{^(\S+) (\S+) (\S+)$} + regex1 = %r{^(\S+) (\S+) (\S+)$} + regex2 = %r{^(\S+) (\S+)(\s+)$} begin line = File.open(filepath).read.chomp - if match = regex.match(line) + if (match = regex1.match(line)) or (match = regex2.match(line)) value = match[2] end rescue -- cgit v1.2.3