Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions lib/puppet/type/solidfire_vag.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,64 @@

newproperty(:initiators, :array_matching => :all) do
desc "List of initiators to include in the Volume Access Group"

def insync?(is)
is.sort == should.sort
end

def change_to_s(currentvalue, newvalue)
currentvalue = if currentvalue == :absent || currentvalue.nil?
[]
else
currentvalue
end
newvalue = if newvalue == :absent
[]
else
newvalue
end
changes = []
removing = currentvalue - newvalue
adding = newvalue - currentvalue
if removing != []
changes << "Removing initiators: #{removing.join(',')}"
end
if adding != []
changes << "Adding initiators: #{adding.join(',')}"
end
changes.join(' ')
end
end

newproperty(:volumes, :array_matching => :all) do
desc "List of Volume Names to include in the Volume Access Group"

def insync?(is)
is.sort == should.sort
end

def change_to_s(currentvalue, newvalue)
currentvalue = if currentvalue == :absent || currentvalue.nil?
[]
else
currentvalue
end
newvalue = if newvalue == :absent
[]
else
newvalue
end
changes = []
removing = currentvalue - newvalue
adding = newvalue - currentvalue
if removing != []
changes << "Removing volumes: #{removing.join(',')}"
end
if adding != []
changes << "Adding volumes: #{adding.join(',')}"
end
changes.join(' ')
end
end

newproperty(:vagid) do
Expand Down