summaryrefslogtreecommitdiff
path: root/puppet/modules/rsyslog/lib/facter
diff options
context:
space:
mode:
authorMicah <micah@leap.se>2016-05-24 10:19:39 -0400
committerMicah <micah@leap.se>2016-05-24 10:19:39 -0400
commitda6dd78cbb76c6b386e41e6ccc2f8f5a870f46bb (patch)
tree2692bfaf300d9625ebab436423298b42d3c89dcd /puppet/modules/rsyslog/lib/facter
parentf5ab8dc148de8cc4cfd9df88ce9a81703405f8c5 (diff)
parent1419079315b69a271b5019bcf5e7c4df39633677 (diff)
Merge commit '1419079315b69a271b5019bcf5e7c4df39633677' as 'puppet/modules/rsyslog'
Diffstat (limited to 'puppet/modules/rsyslog/lib/facter')
-rw-r--r--puppet/modules/rsyslog/lib/facter/rsyslog_version.rb38
1 files changed, 38 insertions, 0 deletions
diff --git a/puppet/modules/rsyslog/lib/facter/rsyslog_version.rb b/puppet/modules/rsyslog/lib/facter/rsyslog_version.rb
new file mode 100644
index 00000000..de8531e8
--- /dev/null
+++ b/puppet/modules/rsyslog/lib/facter/rsyslog_version.rb
@@ -0,0 +1,38 @@
+# Fact: :syslog_package
+#
+# Purpose: retrieve installed rsyslog version
+#
+
+Facter.add(:rsyslog_version) do
+ setcode do
+ osfamily = Facter.value('osfamily')
+ case osfamily
+ when "Debian"
+ command='/usr/bin/dpkg-query -f \'${Status};${Version};\' -W rsyslog 2>/dev/null'
+ version = Facter::Util::Resolution.exec(command)
+ if version =~ /.*install ok installed;([^;]+);.*/
+ $1
+ else
+ nil
+ end
+ when "RedHat", "Suse"
+ command='rpm -qa --qf "%{VERSION}" "rsyslog"'
+ version = Facter::Util::Resolution.exec(command)
+ if version =~ /^(.+)$/
+ $1
+ else
+ nil
+ end
+ when "FreeBSD"
+ command='pkg query %v rsyslog'
+ version = Facter::Util::Resolution.exec(command)
+ if version =~ /^(.+)$/
+ $1
+ else
+ nil
+ end
+ else
+ nil
+ end
+ end
+end