kurzd.go 985 B

1234567891011121314151617181920212223242526
  1. // Package kurzd contains the Kurz daemon command.
  2. package kurzd
  3. /**
  4. kurzd
  5. -v Verbose (default: false).
  6. help Display help.
  7. server Serve kurz (default option).
  8. -p|--port <port_id> Serve on this IP port (default: 80).
  9. -m|--monitoring <port_id> Serve monitoring on this IP port (default: none)
  10. install Install kurzd completely.
  11. config Install the configuration define by command line to ~.
  12. schema Install the kurz database schema.
  13. export Export kurzd data.
  14. -o <file> Specify a destination file.
  15. config Export kurz configuration.
  16. content Export kurz content.
  17. uninstall Uninstall kurzd completely.
  18. config Uninstall the curz configuration file from ~.
  19. schema Uninstall the curz database schema.
  20. status Report on kurzd status
  21. stop Stop all instances of kurzd on the current server (restricted)
  22. */
  23. func main() {
  24. }