瀏覽代碼

Systemd service for home assistant

pull/4/head
Ales Komarek 6 年之前
父節點
當前提交
1ea1f6fd77
共有 2 個文件被更改,包括 33 次插入0 次删除
  1. +11
    -0
      home_assistant/files/home-assistant.service
  2. +22
    -0
      home_assistant/server.sls

+ 11
- 0
home_assistant/files/home-assistant.service 查看文件

@@ -0,0 +1,11 @@
[Unit]
Description=Home Assistant
After=network-online.target

[Service]
Type=simple
User=home_assistant
ExecStart=/srv/home_assistant/bin/hass --config /etc/home_assistant

[Install]
WantedBy=multi-user.target

+ 22
- 0
home_assistant/server.sls 查看文件

@@ -79,6 +79,28 @@ home_assistant_config:
- require:
- file: home_assistant_config_dir

home_assistant_service_script:
file.managed:
- name: /etc/systemd/system/home-assistant.service
- source: salt://home_assistant/files/home-assistant.service
- template: jinja
- user: root
- mode: 644
- watch_in:
- module: home_assistant_restart_systemd

home_assistant_service:
service.running:
- name: home-assistant
- enable: true
- watch:
- module: home_assistant_restart_systemd
- file: home_assistant_service_script

home_assistant_restart_systemd:
module.wait:
- name: service.systemctl_reload

{%- if server.known_device is defined %}

home_assistant_know_devices:

Loading…
取消
儲存