Class: Vagrant::Smartos::Zones::Util::ZoneGroup
- Inherits:
-
Object
- Object
- Vagrant::Smartos::Zones::Util::ZoneGroup
- Includes:
- GlobalZone::Helper
- Defined in:
- lib/vagrant/smartos/zones/util/zone_group.rb
Instance Attribute Summary collapse
-
#machine ⇒ Object
readonly
Returns the value of attribute machine.
-
#zone ⇒ Object
readonly
Returns the value of attribute zone.
Instance Method Summary collapse
- #create(group) ⇒ Object
- #exists?(group) ⇒ Boolean
- #find(group) ⇒ Object
-
#initialize(machine, zone) ⇒ ZoneGroup
constructor
A new instance of ZoneGroup.
Methods included from GlobalZone::Helper
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
#machine ⇒ Object (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 |
#zone ⇒ Object (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
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 |