123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- {
- "module_spec": {
- "module_name": "Auth",
- "module_description": "Authoritative service",
- "config_data": [
- { "item_name": "database_file",
- "item_type": "string",
- "item_optional": true,
- "item_default": "@@LOCALSTATEDIR@@/@PACKAGE@/zone.sqlite3"
- },
- { "item_name": "datasources",
- "item_type": "list",
- "item_optional": true,
- "item_default": [],
- "list_item_spec": {
- "item_name": "list_element",
- "item_type": "map",
- "item_optional": false,
- "item_default": {},
- "map_item_spec": [
- { "item_name": "type",
- "item_type": "string",
- "item_optional": false,
- "item_default": ""
- },
- { "item_name": "class",
- "item_type": "string",
- "item_optional": false,
- "item_default": "IN"
- },
- { "item_name": "zones",
- "item_type": "list",
- "item_optional": false,
- "item_default": [],
- "list_item_spec": {
- "item_name": "list_element",
- "item_type": "map",
- "item_optional": true,
- "map_item_spec": [
- { "item_name": "origin",
- "item_type": "string",
- "item_optional": false,
- "item_default": ""
- },
- { "item_name": "file",
- "item_type": "string",
- "item_optional": false,
- "item_default": ""
- }
- ]
- }
- }
- ]
- }
- },
- { "item_name": "statistics-interval",
- "item_type": "integer",
- "item_optional": true,
- "item_default": 60
- }
- ],
- "commands": [
- {
- "command_name": "shutdown",
- "command_description": "Shut down authoritative DNS server",
- "command_args": []
- },
- {
- "command_name": "sendstats",
- "command_description": "Send data to a statistics module at once",
- "command_args": []
- },
- {
- "command_name": "loadzone",
- "command_description": "(Re)load a specified zone",
- "command_args": [
- {
- "item_name": "class", "item_type": "string",
- "item_optional": true, "item_default": "IN"
- },
- {
- "item_name": "origin", "item_type": "string",
- "item_optional": false, "item_default": ""
- },
- {
- "item_name": "datasrc", "item_type": "string",
- "item_optional": true, "item_default": "memory"
- }
- ]
- }
- ]
- }
- }
|