cmdctl.spec.pre.in 1019 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "module_spec": {
  3. "module_name": "Cmdctl",
  4. "module_description": "Interface for command and control",
  5. "config_data": [
  6. {
  7. "item_name": "key_file",
  8. "item_type": "string",
  9. "item_optional": false,
  10. "item_default": "@@SYSCONFDIR@@/@PACKAGE@/cmdctl-keyfile.pem"
  11. },
  12. {
  13. "item_name": "cert_file",
  14. "item_type": "string",
  15. "item_optional": false,
  16. "item_default": "@@SYSCONFDIR@@/@PACKAGE@/cmdctl-certfile.pem"
  17. },
  18. {
  19. "item_name": "accounts_file",
  20. "item_type": "string",
  21. "item_optional": false,
  22. "item_default": "@@SYSCONFDIR@@/@PACKAGE@/cmdctl-accounts.csv"
  23. }
  24. ],
  25. "commands": [
  26. {
  27. "command_name": "print_settings",
  28. "command_description": "Print some_string and some_int to stdout",
  29. "command_args": []
  30. },
  31. {
  32. "command_name": "shutdown",
  33. "command_description": "shutdown cmdctl",
  34. "command_args": []
  35. }
  36. ]
  37. }
  38. }