Class: Vagrant::Smartos::Zones::Util::ZoneProject

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from GlobalZone::Helper

included, #sudo, #with_gz

Constructor Details

#initialize(machine, zone) ⇒ ZoneProject

Returns a new instance of ZoneProject.



13
14
15
16
# File 'lib/vagrant/smartos/zones/util/zone_project.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_project.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_project.rb', line 11

def zone
  @zone
end

Instance Method Details

#create(project, users, comment) ⇒ Object



22
23
24
25
26
# File 'lib/vagrant/smartos/zones/util/zone_project.rb', line 22

def create(project, users, comment)
  return if zone.lx_brand?
  return if exists?(project)
  zone.zlogin("projadd -c \"#{comment}\" -U #{users.join(',')} #{project}")
end

#exists?(project) ⇒ Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/vagrant/smartos/zones/util/zone_project.rb', line 18

def exists?(project)
  machine.communicate.gz_test("#{sudo} zlogin #{zone.uuid} projects -l #{project}")
end