get the name of a cluster node, parsing the yaml
authorMartin Zobel-Helas <zobel@debian.org>
Sun, 1 Dec 2013 10:20:39 +0000 (11:20 +0100)
committerMartin Zobel-Helas <zobel@debian.org>
Sun, 1 Dec 2013 10:20:39 +0000 (11:20 +0100)
Signed-off-by: Martin Zobel-Helas <zobel@debian.org>
modules/debian-org/lib/facter/cluster.rb

index fea1435..c8a2ac4 100644 (file)
@@ -10,7 +10,7 @@ if FileTest.exist?('/usr/sbin/gnt-cluster') and FileTest.exist?('/var/lib/ganeti
                                end
                                Facter.add('cluster_nodes') do
                                setcode do
-                                       yaml['nodes'].keys.join(' ')
+                                       yaml['nodes']['name'].keys.join(' ')
                                end
                        end
                end