summaryrefslogtreecommitdiff
path: root/lib/facter/strongswan_ips.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/facter/strongswan_ips.rb')
-rw-r--r--lib/facter/strongswan_ips.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/facter/strongswan_ips.rb b/lib/facter/strongswan_ips.rb
index 7d6f30b..7fac37e 100644
--- a/lib/facter/strongswan_ips.rb
+++ b/lib/facter/strongswan_ips.rb
@@ -2,7 +2,7 @@ Facter.add("strongswan_ips") do
setcode do
result = nil
if bin = ['/usr/sbin/ipsec', '/usr/sbin/strongswan'].find{|f| File.exists?(f) }
- output = Facter::Util::Resolution.exec("#{bin} statusall | grep -E '^ [0-9a-f]'").split("\n").collect(&:strip)
+ output = Facter::Util::Resolution.exec("#{bin} statusall | grep -E '^ [0-9a-f]'").to_s.split("\n").collect(&:strip)
result = output.join(',') unless output.empty?
end
result