Created
June 24, 2013 16:42
-
-
Save supercow/5851505 to your computer and use it in GitHub Desktop.
JSON to YAML from the Hiera walkthrough
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks brah