Files
ProxmoxVE/install/esphome-install.sh
T

67 lines
1.4 KiB
Bash
Raw Normal View History

2023-03-22 20:48:20 -04:00
#!/usr/bin/env bash
# Copyright (c) 2021-2023 tteck
# Author: tteck (tteckster)
# License: MIT
# https://github.com/tteck/Proxmox/raw/main/LICENSE
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 curl
$STD apt-get install -y sudo
$STD apt-get install -y mc
$STD apt-get install -y git
msg_ok "Installed Dependencies"
2023-06-20 09:06:25 -04:00
msg_info "Updating Python3"
$STD apt-get install -y \
2023-06-20 10:12:16 -04:00
python3 \
python3-dev \
python3-pip \
python3-venv
2023-06-25 00:13:23 -04:00
2023-06-20 09:06:25 -04:00
msg_ok "Updated Python3"
2023-03-22 20:48:20 -04:00
msg_info "Installing ESPHome"
2023-06-23 21:33:35 -04:00
#mkdir /srv/esphome
#cd /srv/esphome
#python3 -m venv .
#source bin/activate
2023-06-20 10:12:16 -04:00
$STD pip install esphome tornado esptool
2023-08-17 10:53:23 -04:00
echo "bash -c \"\$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/ct/${app}.sh)\"" >/usr/bin/update
chmod +x /usr/bin/update
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-06-23 21:33:35 -04:00
#ExecStart=/srv/esphome/bin/esphome dashboard /root/config/
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
2023-06-20 09:06:25 -04:00
systemctl enable -q --now esphomeDashboard.service
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"
$STD apt-get autoremove
$STD apt-get autoclean
msg_ok "Cleaned"