Files
ProxmoxVE/install/esphome-install.sh
T

58 lines
1.1 KiB
Bash
Raw Normal View History

2023-03-22 20:48:20 -04:00
#!/usr/bin/env bash
# Copyright (c) 2021-2025 tteck
2023-03-22 20:48:20 -04:00
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://esphome.io/
2023-03-22 20:48:20 -04:00
2023-06-20 10:12:16 -04:00
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
2023-03-22 20:48:20 -04:00
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
msg_info "Installing Dependencies"
$STD apt-get install -y git
msg_ok "Installed Dependencies"
msg_info "Setup Python3"
2023-06-20 09:06:25 -04:00
$STD apt-get install -y \
2023-06-20 10:12:16 -04:00
python3 \
python3-dev \
python3-pip \
python3-venv
2024-06-29 11:18:26 -04:00
rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED
msg_ok "Setup Python3"
2023-03-22 20:48:20 -04:00
msg_info "Installing ESPHome"
2023-11-16 19:38:59 -05:00
mkdir /root/config
2023-06-20 10:12:16 -04:00
$STD pip install esphome tornado esptool
2023-03-22 20:48:20 -04:00
msg_ok "Installed ESPHome"
2023-06-20 09:06:25 -04:00
msg_info "Creating Service"
2023-06-23 13:17:03 -04:00
cat <<EOF >/etc/systemd/system/esphomeDashboard.service
[Unit]
2023-03-22 20:48:20 -04:00
Description=ESPHome Dashboard
After=network.target
2023-06-23 13:17:03 -04:00
2023-03-22 20:48:20 -04:00
[Service]
2023-11-16 19:38:59 -05:00
ExecStart=/usr/local/bin/esphome dashboard /root/config/
2023-03-22 20:48:20 -04:00
Restart=always
User=root
2023-06-23 13:17:03 -04:00
2023-03-22 20:48:20 -04:00
[Install]
2023-06-23 13:17:03 -04:00
WantedBy=multi-user.target
EOF
2025-04-01 20:22:40 +02:00
systemctl enable -q --now esphomeDashboard
2023-06-20 09:06:25 -04:00
msg_ok "Created Service"
2023-03-22 20:48:20 -04:00
motd_ssh
2023-05-15 07:39:30 -04:00
customize
2023-03-22 20:48:20 -04:00
msg_info "Cleaning up"
2024-05-02 13:26:16 -04:00
$STD apt-get -y autoremove
$STD apt-get -y autoclean
2023-03-22 20:48:20 -04:00
msg_ok "Cleaned"