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



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

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