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