Skip to content

Commit

Permalink
Fixed reference to name when flushing
Browse files Browse the repository at this point in the history
Fixes #15
  • Loading branch information
Dylan Ratcliffe committed Apr 27, 2018
1 parent 6921fe1 commit 280593d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/puppet/provider/rbac_role/ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def flush
role = {
'id' => @property_hash[:id],
'description' => @property_hash[:description],
'display_name' => @property_hash[:display_name],
'display_name' => @property_hash[:name],
'permissions' => @property_hash[:permissions],
'user_ids' => @property_hash[:user_ids],
'group_ids' => @property_hash[:group_ids],
Expand Down

0 comments on commit 280593d

Please sign in to comment.