Skip to content

Commit

Permalink
Prevent duplicate declaration in firewalld_ipset
Browse files Browse the repository at this point in the history
Fixes simp#49
  • Loading branch information
silug committed Apr 29, 2024
1 parent 6836cea commit 2dffd99
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Mon Apr 29 2024 Steven Pritchard <[email protected]> - 0.10.1
- Prevent duplicate declaration in `firewalld_ipset` (#49)

* Thu Jan 18 2024 Mike Riddle <[email protected]> - 0.10.0
- Made the 99_simp zone purge parameters toggle-able

Expand Down
2 changes: 1 addition & 1 deletion manifests/rule.pp
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@
'simp',
seeded_rand_string(
26,
join([$_ipset_family, $_ipset_type] + sort(unique($_trusted_nets)),'')
join([$_ipset_family, $_ipset_type] + sort(unique($_trusted_nets)) + $_ipset_entries,'')
)
], '-')[0,31]

Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simp-simp_firewalld",
"version": "0.10.0",
"version": "0.10.1",
"author": "SIMP Team",
"summary": "SIMP-oriented firewalld management",
"license": "Apache-2.0",
Expand Down

0 comments on commit 2dffd99

Please sign in to comment.