Class: Vagrant::Smartos::Zones::Util::ZoneGroup

Inherits:
Object
  • Object
show all
Includes:
GlobalZone::Helper
Defined in:
lib/vagrant/smartos/zones/util/zone_group.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from GlobalZone::Helper

included, #sudo, #with_gz

Constructor Details

#initialize(machine, zone) ⇒ ZoneGroup

Returns a new instance of ZoneGroup.



13
14
15
16
# File 'lib/vagrant/smartos/zones/util/zone_group.rb', line 13

def initialize(machine, zone)
  @machine = machine
  @zone = zone
end

Instance Attribute Details

#machineObject (readonly)

Returns the value of attribute machine.



11
12
13
# File 'lib/vagrant/smartos/zones/util/zone_group.rb', line 11

def machine
  @machine
end

#zoneObject (readonly)

Returns the value of attribute zone.



11
12
13
# File 'lib/vagrant/smartos/zones/util/zone_group.rb', line 11

def zone
  @zone
end

Instance Method Details

#create(group) ⇒ Object



31
32
33
34
# File 'lib/vagrant/smartos/zones/util/zone_group.rb', line 31

def create(group)
  return if exists?(group)
  zone.zlogin("groupadd #{group}")
end

#exists?(group) ⇒ Boolean

Returns:

  • (Boolean)


27
28
29
# File 'lib/vagrant/smartos/zones/util/zone_group.rb', line 27

def exists?(group)
  machine.communicate.gz_test("#{sudo} zlogin #{zone.uuid} gid -g #{group}")
end

#find(group) ⇒ Object



18
19
20
21
22
23
24
25
# File 'lib/vagrant/smartos/zones/util/zone_group.rb', line 18

def find(group)
  Models::ZoneGroup.new.tap do |g|
    g.name = group
    with_gz("#{sudo} zlogin #{zone.uuid} gid -g #{group}") do |output|
      g.gid = output.chomp if output
    end
  end
end