Compare commits

..

4 Commits

Author SHA1 Message Date
github-actions[bot]
d2172543f6 Update CHANGELOG.md 2024-12-21 16:25:03 +00:00
Fraefel
b0a523aac3
Update homeassistant-core.sh (#961)
Corrected the port number to 8123
2024-12-21 17:24:51 +01:00
CanbiZ
67a0c06b80
update width for alpine
Some checks failed
Create Changelog Pull Request / update-changelog-pull-request (push) Waiting to run
Frontend CI/CD / build (push) Has been cancelled
Frontend CI/CD / deploy (push) Has been cancelled
2024-12-20 23:18:29 +01:00
community-scripts-pr-app[bot]
1c4c3b71e3
Update CHANGELOG.md (#955) 2024-12-20 22:33:11 +01:00
3 changed files with 12 additions and 3 deletions

View File

@ -16,6 +16,14 @@ All LXC instances created using this repository come pre-installed with Midnight
> [!IMPORTANT]
Do not break established syntax in this file, as it is automatically updated by a Github Workflow
## 2024-12-21
### Changed
### 🚀 Updated Scripts
- update Port in homeassistant-core CT [@fraefel](https://github.com/fraefel) ([#961](https://github.com/community-scripts/ProxmoxVE/pull/961))
## 2024-12-20
### Changed

View File

@ -128,4 +128,4 @@ description
msg_ok "Completed Successfully!\n"
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8132${CL}"
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8123${CL}"

View File

@ -164,13 +164,14 @@ header_info() {
apt-get install -y figlet &> /dev/null
elif [ -f /etc/alpine-release ]; then
# Alpine Linux
apk add --no-cache figlet &> /dev/null
apk add --no-cache figlet ncurses &> /dev/null
export TERM=xterm
else
echo "Unsupported OS"
return 1
fi
term_width=$(tput cols)
term_width=$(tput cols 2>/dev/null || echo 120) # Fallback to 120 columns
ascii_art=$(figlet -f slant -w "$term_width" "$APP")
clear
cat <<EOF