config.yaml 592 B

12345678910111213141516171819202122232425262728293031
  1. ---
  2. listenAddressSingleHTTPFrontend: 0.0.0.0:11337
  3. logLevel: "WARN"
  4. checkForUpdates: false
  5. showFooter: false
  6. actionGroups:
  7. backup:
  8. maxConcurrent: 1
  9. queueSize: 5
  10. actions:
  11. - title: Check disk space
  12. icon: disk
  13. shell: |
  14. echo "Filesystem Size Used Avail Use% Mounted on"
  15. echo "/dev/sda1 50G 12G 38G 24% /"
  16. - title: Restart service
  17. icon: restart
  18. shell: echo "Service restarted successfully"
  19. - title: Slow action
  20. icon: clock
  21. shell: sleep 5
  22. - title: Slow backup
  23. icon: backup
  24. shell: sleep 30
  25. groups: [ backup ]