| 123456789101112131415161718192021222324252627282930313233 |
- ---
- listenAddressSingleHTTPFrontend: 0.0.0.0:11337
- logLevel: "WARN"
- checkForUpdates: false
- showFooter: false
- actions:
- - title: Stop {{ systemd_unit.unit }}
- shell: echo "stop {{ systemd_unit.unit }}"
- icon: <iconify-icon icon="zondicons:hand-stop"></iconify-icon>
- entity: systemd_unit
- - title: Start {{ systemd_unit.unit }}
- shell: echo "start {{ systemd_unit.unit }}"
- icon: <iconify-icon icon="ic:round-directions-run"></iconify-icon>
- entity: systemd_unit
- entities:
- - file: systemd_units.json
- name: systemd_unit
- dashboards:
- - title: My Services
- contents:
- - title: '{{ systemd_unit.description }}'
- type: fieldset
- entity: systemd_unit
- contents:
- - title: 'Status: {{ systemd_unit.sub }}'
- type: display
- - title: Start {{ systemd_unit.unit }}
- - title: Stop {{ systemd_unit.unit }}
|