summaryrefslogtreecommitdiff
path: root/lib/facter/rsyslog_version.rb
blob: bbde16c666cf94a7d812ff2722123a60e1f05fdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 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
        else
            nil
        end
    end
end