Last active
September 8, 2015 16:07
-
-
Save tfitch/cbc101f99308924fee6a to your computer and use it in GitHub Desktop.
CE code test
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
[appdefaults] | |
{ | |
example.com { | |
kdc = x1.example.com:88, | |
kdc = x2.example.com:88, | |
kdc = x3.example.com:88, | |
kdc = x4.example.com:88, | |
kdc = x5.example.com:88, | |
kdc = x6.example.com:88, | |
kdc = exampledcoce.example.com:88, | |
admin_server = exampleapoce.example.com:654, | |
default_domain = example.com | |
} | |
} |
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
{ | |
"example.com": { | |
"kdc": "x1.example.com:88", | |
"kdc": "x2.example.com:88", | |
"kdc": "x3.example.com:88", | |
"kdc": "x4.example.com:88", | |
"kdc": "x5.example.com:88", | |
"kdc": "x6.example.com:88", | |
"kdc": "exampledcoce.example.com:88", | |
"admin_server": "exampleapoce.example.com:654", | |
"default_domain": "example.com" | |
} | |
} |
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
<% if @appdefaults %> | |
[appdefaults] | |
<% @appdefaults.each do |app, h| %> | |
<%= app %> = { | |
<% h.each do |k, v| %> | |
<%= k %> = <%= v %> | |
<% end %> | |
} | |
<% end %> | |
<% end %> |
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
[appdefaults] | |
{ | |
example.com { | |
kdc = exampledcoce.example.com:88, | |
admin_server = exampleapoce.example.com:654, | |
default_domain = example.com | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment