class Ansible::Inventory::Group

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/ansible/inventory.rb, line 121
def initialize(*args)
  super
  self.hosts = Host::Collection.new unless hosts
  self.vars = ActiveSupport::HashWithIndifferentAccess.new(vars)
  self.children = []
end