mirror of
https://github.com/tteck/Proxmox.git
synced 2024-11-17 20:11:17 +00:00
Update zwave-js-ui-update.sh
This commit is contained in:
parent
a28f172757
commit
cf49c462a7
@ -38,12 +38,25 @@ cd /opt/zwave-js-ui
|
|||||||
RELEASE=$(curl -s https://api.github.com/repos/zwave-js/zwave-js-ui/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
|
RELEASE=$(curl -s https://api.github.com/repos/zwave-js/zwave-js-ui/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
|
||||||
wget https://github.com/zwave-js/zwave-js-ui/releases/download/${RELEASE}/zwave-js-ui-${RELEASE}-linux.zip &>/dev/null
|
wget https://github.com/zwave-js/zwave-js-ui/releases/download/${RELEASE}/zwave-js-ui-${RELEASE}-linux.zip &>/dev/null
|
||||||
unzip zwave-js-ui-${RELEASE}-linux.zip zwave-js-ui-linux &>/dev/null
|
unzip zwave-js-ui-${RELEASE}-linux.zip zwave-js-ui-linux &>/dev/null
|
||||||
|
|
||||||
|
cat << EOF > /etc/systemd/system/zwave-js-ui.service
|
||||||
|
[Unit]
|
||||||
|
Description=zwave-js-ui
|
||||||
|
Wants=network-online.target
|
||||||
|
After=network-online.target
|
||||||
|
[Service]
|
||||||
|
User=root
|
||||||
|
WorkingDirectory=/opt/zwave-js-ui
|
||||||
|
ExecStart=/opt/zwave-js-ui/zwave-js-ui-linux
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
EOF
|
||||||
echo -e "${CM}${CL} \r"
|
echo -e "${CM}${CL} \r"
|
||||||
|
|
||||||
echo -en "${GN} Cleanup... "
|
echo -en "${GN} Cleanup... "
|
||||||
rm zwave-js-ui-${RELEASE}-linux.zip
|
rm -rf zwave-js-ui-${RELEASE}-linux.zip zwave-js-ui
|
||||||
systemctl --system daemon-reload
|
systemctl daemon-reload
|
||||||
systemctl start zwave-js-ui.service
|
systemctl enable --now zwave-js-ui.service
|
||||||
echo -e "${CM}${CL} \n"
|
echo -e "${CM}${CL} \n"
|
||||||
|
|
||||||
echo -e "${GN} Finished ${CL}"
|
echo -e "${GN} Finished ${CL}"
|
||||||
|
Loading…
Reference in New Issue
Block a user