Skip to content

Instantly share code, notes, and snippets.

@supercow
Created June 24, 2013 16:42
Show Gist options
  • Save supercow/5851505 to your computer and use it in GitHub Desktop.
Save supercow/5851505 to your computer and use it in GitHub Desktop.
JSON to YAML from the Hiera walkthrough
{
"ntp::restrict" : false,
"ntp::autoupdate" : false,
"ntp::enable" : true,
"ntp::servers" : [
"0.us.pool.ntp.org iburst",
"1.us.pool.ntp.org iburst",
"2.us.pool.ntp.org iburst",
"3.us.pool.ntp.org iburst"
]
}
ntp::restrict: false
ntp::autoupdate: false
ntp::enable: true
ntp::servers:
- "0.us.pool.ntp.org iburst"
- "1.us.pool.ntp.org iburst"
- "2.us.pool.ntp.org iburst"
- "3.us.pool.ntp.org iburst"
@whiteadam
Copy link

Thanks brah

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment