mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-02-12 02:39:17 +00:00
Compare commits
4 Commits
ad99ba624f
...
d2172543f6
Author | SHA1 | Date | |
---|---|---|---|
|
d2172543f6 | ||
|
b0a523aac3 | ||
|
67a0c06b80 | ||
|
1c4c3b71e3 |
@ -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
|
||||
|
@ -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}"
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user