1 Facter.add("apache2") do
3 if FileTest.exist?("/usr/sbin/apache2")
10 Facter.add("clamd") do
12 if FileTest.exist?("/usr/sbin/clamd")
19 Facter.add("exim4") do
21 if FileTest.exist?("/usr/sbin/exim4")
28 Facter.add("postfix") do
30 if FileTest.exist?("/usr/sbin/postfix")
37 Facter.add("postgres") do
39 pg = (FileTest.exist?("/usr/lib/postgresql/9.1/bin/postgres") or
40 FileTest.exist?("/usr/lib/postgresql/9.4/bin/postgres") or
41 FileTest.exist?("/usr/lib/postgresql/9.6/bin/postgres"))
49 Facter.add("postgrey") do
51 if FileTest.exist?("/usr/sbin/postgrey")
58 Facter.add("greylistd") do
60 FileTest.exist?("/usr/sbin/greylistd")
63 Facter.add("policydweight") do
65 if FileTest.exist?("/usr/sbin/policyd-weight")
72 Facter.add("spamd") do
74 if FileTest.exist?("/usr/sbin/spamd")
82 php = (FileTest.exist?("/usr/lib/apache2/modules/libphp5.so") or
83 FileTest.exist?("/usr/bin/php5") or
84 FileTest.exist?("/usr/bin/php5-cgi") or
85 FileTest.exist?("/usr/lib/cgi-bin/php5"))
94 Facter.add("php5suhosin") do
95 suhosin=(FileTest.exist?("/usr/lib/php5/20060613/suhosin.so") or
96 FileTest.exist?("/usr/lib/php5/20060613+lfs/suhosin.so"))
105 Facter.add("syslogversion") do
107 %x{dpkg-query -W -f='${Version}\n' syslog-ng | cut -b1-3}.chomp
110 Facter.add("unbound") do
111 unbound=(FileTest.exist?("/usr/sbin/unbound") and
112 FileTest.exist?("/var/lib/unbound/root.key"))
121 Facter.add("munin_async") do
123 FileTest.exist?("/usr/share/munin/munin-async")
126 Facter.add("samhain") do
128 if FileTest.exist?("/usr/sbin/samhain")
135 Facter.add("systemd") do
138 if File.symlink?(init) and File.readlink(init) == "/lib/systemd/systemd"
145 Facter.add("tor_ge_0_2_9") do
147 system(%{test -n "$(dpkg-query -W -f='${Version}' tor 2>/dev/null)" && dpkg --compare-versions "$(dpkg-query -W -f='${Version}' tor)" ge 0.2.9})
150 Facter.add("haveged") do
152 FileTest.exist?("/usr/sbin/haveged")
155 Facter.add("bgpd") do
157 FileTest.exist?("/usr/sbin/bgpd")
160 Facter.add("zebra") do
162 FileTest.exist?("/usr/sbin/zebra")
165 Facter.add("update_grub") do
167 FileTest.exist?("/usr/sbin/update-grub")
170 Facter.add("haproxy") do
172 FileTest.exist?("/usr/sbin/haproxy")