Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support the logging directive in Kickstart #19

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions aii-ks/src/main/pan/quattor/aii/ks/schema.pan
Expand Up @@ -31,6 +31,13 @@ type structure_ks_ksfirewall = {
"ports" : long[] = list (7777)
};

# Information needed for logging into syslog
type structure_ks_logging = {
"host" : type_host
"port" : type_port = 514
"level" ? string with match(SELF, "^(debug|warning|error|critical|info)$")
};

# Information needed for creating the Kickstart file
type structure_ks_ks_info = {
"ackurl" : type_absoluteURI
Expand All @@ -50,6 +57,7 @@ type structure_ks_ks_info = {
"lang" : string = "en_US.UTF-8"
# If you use more than one languages, mark the default one with "--default=your_lang"
"langsupport" ? string [] = list ("en_US.UTF-8")
"logging" ? structure_ks_logging
"mouse" ? string
"bootproto" : string with match (SELF, "static|dhcp")
"keyboard" : string = "us"
Expand Down