Skip to content

Instantly share code, notes, and snippets.

View tuxmea's full-sized avatar

Martin Alfke tuxmea

View GitHub Profile
@tuxmea
tuxmea / gist:bf376284ceaff1c1f450
Last active August 29, 2015 14:20
property and Puppet Type dependency
e.g.
onevnet_addressrange { 'foo':
ensure => present,
onevnet => 'bar',
...
}
Should check, that
onevnet { 'bar':
ensure => present,
...
@tuxmea
tuxmea / xml parsing puppet provider
Last active August 29, 2015 14:16
XML parsing in a puppet provider
Data which needs to get parsed:
<AR>
<AR_ID><![CDATA[8]]></AR_ID>
<IP><![CDATA[172.16.100.208]]></IP>
<MAC><![CDATA[02:00:ac:10:64:d0]]></MAC>
<SIZE><![CDATA[1]]></SIZE>
<TYPE><![CDATA[IP4]]></TYPE>
<USED_LEASES>0</USED_LEASES>
<LEASES/>