Proxmox/install/alpine-esphome-install.sh

49 lines
960 B
Bash
Raw Normal View History

2023-03-25 13:08:07 +00:00
#!/usr/bin/env bash
# Copyright (c) 2021-2023 tteck
# Author: tteck (tteckster)
# License: MIT
# https://github.com/tteck/Proxmox/raw/main/LICENSE
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
msg_info "Installing Dependencies"
$STD apk add newt
$STD apk add curl
$STD apk add openssh
$STD apk add nano
$STD apk add mc
$STD apk add git
msg_ok "Installed Dependencies"
msg_info "Installing Alpine-ESPHome"
$STD apk add py3-pip
$STD pip3 install esphome
$STD pip3 install tornado esptool
2023-03-25 15:49:10 +00:00
echo "#!/sbin/openrc-run
description=\"ESPHome\"
pidfile=\"/run/esphome.pid\"
2023-03-25 13:08:07 +00:00
start() {
esphome dashboard /root/esphome/config/ > /dev/null 2>&1 &
echo \$! > \$pidfile
2023-03-25 13:08:07 +00:00
}
stop() {
kill \$(cat \$pidfile)
rm \$pidfile
}" > /etc/init.d/esphome
2023-03-25 13:08:07 +00:00
chmod 755 /etc/init.d/esphome
rc-service -q esphome start
rc-update add -q esphome default
2023-03-25 13:08:07 +00:00
msg_ok "Installed Alpine-ESPHome"
motd_ssh
root