Skip to content

Instantly share code, notes, and snippets.

@glarizza
Created December 11, 2012 02:23
Show Gist options
  • Save glarizza/4255342 to your computer and use it in GitHub Desktop.
Save glarizza/4255342 to your computer and use it in GitHub Desktop.
property_list_key { 'netboot_enabled':
ensure => present,
path => '/etc/bootpd',
key => 'netboot_enabled',
value => $interface,
value_type => 'array',
}
property_list_key { 'startTime':
ensure => present,
path => '/etc/bootpd',
key => 'startTime',
value => $time_now,
value_type => 'string',
}
property_list_key { 'dhcp_enabled_false':
ensure => present,
path => '/etc/bootpd',
key => 'dhcp_enabled_false',
value => false,
value_type => 'boolean',
}
<and etc...>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment