config.yaml 891 B

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. listenAddressSingleHTTPFrontend: 0.0.0.0:11337
  3. logLevel: "WARN"
  4. checkForUpdates: false
  5. showFooter: false
  6. actions:
  7. - title: Stop {{ systemd_unit.unit }}
  8. shell: echo "stop {{ systemd_unit.unit }}"
  9. icon: <iconify-icon icon="zondicons:hand-stop"></iconify-icon>
  10. entity: systemd_unit
  11. - title: Start {{ systemd_unit.unit }}
  12. shell: echo "start {{ systemd_unit.unit }}"
  13. icon: <iconify-icon icon="ic:round-directions-run"></iconify-icon>
  14. entity: systemd_unit
  15. entities:
  16. - file: systemd_units.json
  17. name: systemd_unit
  18. dashboards:
  19. - title: My Services
  20. contents:
  21. - title: '{{ systemd_unit.description }}'
  22. type: fieldset
  23. entity: systemd_unit
  24. contents:
  25. - title: 'Status: {{ systemd_unit.sub }}'
  26. type: display
  27. - title: Start {{ systemd_unit.unit }}
  28. - title: Stop {{ systemd_unit.unit }}