knife-cloudstack-fog 0.2.9 → 0.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -66,6 +66,7 @@ class Chef
|
|
|
66
66
|
server_list << instance['zonename'].to_s
|
|
67
67
|
server_list << instance['serviceofferingname'].to_s
|
|
68
68
|
server_list << instance['templatedisplaytext'].to_s
|
|
69
|
+
server_list << instance['hypervisor'].to_s
|
|
69
70
|
|
|
70
71
|
server_list << begin
|
|
71
72
|
state = instance['state'].to_s.downcase
|
|
@@ -95,6 +96,7 @@ class Chef
|
|
|
95
96
|
ui.color('Server Zone', :bold),
|
|
96
97
|
ui.color('Service Offering', :bold),
|
|
97
98
|
ui.color('Template', :bold),
|
|
99
|
+
ui.color('Hypervisor', :bold),
|
|
98
100
|
ui.color('State', :bold)
|
|
99
101
|
]
|
|
100
102
|
|
|
@@ -107,7 +109,7 @@ class Chef
|
|
|
107
109
|
filters[:zoneid] = zoneid unless zoneid == 'all'
|
|
108
110
|
filters[:state] = state unless state == 'all'
|
|
109
111
|
print_servers(server_list, virtual_machines, filters)
|
|
110
|
-
puts ui.list(server_list, :uneven_columns_across,
|
|
112
|
+
puts ui.list(server_list, :uneven_columns_across, 9)
|
|
111
113
|
end
|
|
112
114
|
end
|
|
113
115
|
end
|