Skip to content

Commit 8454880

Browse files
authored
Merge pull request #74 from atoy40/master
Delete the connections attribute on forward/interface elements
2 parents f4c8b97 + 64ffbbc commit 8454880

File tree

1 file changed

+3
-0
lines changed
  • lib/puppet/provider/libvirt_network

1 file changed

+3
-0
lines changed

lib/puppet/provider/libvirt_network/virsh.rb

+3
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@ def content
9393
xml.root.elements.delete('//mac')
9494
# remove the connections
9595
xml.root.attributes.delete('connections')
96+
xml.root.elements.each('//forward/interface[@connections]') do |el|
97+
el.attributes.delete('connections')
98+
end
9699
formatter = REXML::Formatters::Pretty.new(2)
97100
formatter.compact = true
98101
output = ''.dup

0 commit comments

Comments
 (0)