本帖最后由 my12005 于 2024-4-24 09:15 编辑
一、正在做的linux WEB后台太花了,突然意识到工期太远了,短期还是用HASS吧。
先用shell_command做好各个应用的控制代码。
这个代码要ssh免密登录root账户执行。
shell_command:
aria2_run: ssh root@y480 systemctl restart aria2c
aria2_stop: ssh root@y480 systemctl stop aria2c
qb_run: ssh root@y480 systemctl restart qbittorrent
qb_stop: ssh root@y480 systemctl stop qbittorrent
docker_run: ssh root@y480 systemctl restart docker
docker_stop: ssh root@y480 systemctl stop docker
二、然后用模拟开关控制
switch:
- platform: template
switches:
skylight:
friendly_name: Deluge
控制linux
|