Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Volume Access Group improvements #9

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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