mirror of https://github.com/tteck/Proxmox.git
Update podman_ha_setup.sh
This commit is contained in:
parent
7aa9f19086
commit
5ae370707f
|
@ -81,22 +81,22 @@ echo -e "${CM}${CL} \r"
|
||||||
# selfhostedpro/yacht:latest &>/dev/null
|
# selfhostedpro/yacht:latest &>/dev/null
|
||||||
#echo -e "${CM}${CL} \r"
|
#echo -e "${CM}${CL} \r"
|
||||||
|
|
||||||
echo -en "${GN} Pulling Home Assistant Image... "
|
#echo -en "${GN} Pulling Home Assistant Image... "
|
||||||
podman pull docker.io/homeassistant/home-assistant:stable &>/dev/null
|
#podman pull docker.io/homeassistant/home-assistant:stable &>/dev/null
|
||||||
echo -e "${CM}${CL} \r"
|
#echo -e "${CM}${CL} \r"
|
||||||
|
|
||||||
echo -en "${GN} Installing Home Assistant... "
|
#echo -en "${GN} Installing Home Assistant... "
|
||||||
podman volume create hass_config >/dev/null
|
#podman volume create hass_config >/dev/null
|
||||||
podman run -d \
|
#podman run -d \
|
||||||
--name homeassistant \
|
# --name homeassistant \
|
||||||
--restart unless-stopped \
|
# --restart unless-stopped \
|
||||||
-v /dev:/dev \
|
# -v /dev:/dev \
|
||||||
-v hass_config:/config \
|
# -v hass_config:/config \
|
||||||
-v /etc/localtime:/etc/localtime:ro \
|
# -v /etc/localtime:/etc/localtime:ro \
|
||||||
-v /etc/timezone:/etc/timezone:ro \
|
# -v /etc/timezone:/etc/timezone:ro \
|
||||||
--net=host \
|
# --net=host \
|
||||||
homeassistant/home-assistant:stable &>/dev/null
|
# homeassistant/home-assistant:stable &>/dev/null
|
||||||
echo -e "${CM}${CL} \r"
|
#echo -e "${CM}${CL} \r"
|
||||||
|
|
||||||
echo -en "${GN} Creating Update Script... "
|
echo -en "${GN} Creating Update Script... "
|
||||||
file_path="/root/update.sh"
|
file_path="/root/update.sh"
|
||||||
|
@ -137,16 +137,16 @@ EOF
|
||||||
systemctl daemon-reload
|
systemctl daemon-reload
|
||||||
systemctl restart $(basename $(dirname $GETTY_OVERRIDE) | sed 's/\.d//')
|
systemctl restart $(basename $(dirname $GETTY_OVERRIDE) | sed 's/\.d//')
|
||||||
|
|
||||||
podman generate systemd \
|
#podman generate systemd \
|
||||||
--new --name homeassistant \
|
# --new --name homeassistant \
|
||||||
> /etc/systemd/system/homeassistant.service
|
# > /etc/systemd/system/homeassistant.service
|
||||||
systemctl enable homeassistant &>/dev/null
|
#systemctl enable homeassistant &>/dev/null
|
||||||
|
|
||||||
podman generate systemd \
|
#podman generate systemd \
|
||||||
--new --name yacht \
|
# --new --name yacht \
|
||||||
> /etc/systemd/system/yacht.service
|
# > /etc/systemd/system/yacht.service
|
||||||
systemctl enable yacht &>/dev/null
|
#systemctl enable yacht &>/dev/null
|
||||||
echo -e "${CM}${CL} \r"
|
#echo -e "${CM}${CL} \r"
|
||||||
|
|
||||||
echo -en "${GN} Cleanup... "
|
echo -en "${GN} Cleanup... "
|
||||||
rm -rf /podman_ha_setup.sh /var/{cache,log}/* /var/lib/apt/lists/*
|
rm -rf /podman_ha_setup.sh /var/{cache,log}/* /var/lib/apt/lists/*
|
||||||
|
|
Loading…
Reference in New Issue