Compare commits

...

17 Commits

Author SHA1 Message Date
CanbiZ
d3d6ec8b20
Update 5etools.sh
Some checks are pending
Create Changelog Pull Request / update-changelog-pull-request (push) Waiting to run
Shellcheck / Shellcheck (push) Waiting to run
2025-01-04 20:11:24 +01:00
CanbiZ
314f932764
Update pf2etools.sh 2025-01-04 20:10:03 +01:00
CanbiZ
e191b94151
Update homeassistant-core-install.sh 2025-01-04 20:00:57 +01:00
CanbiZ
9cc4bda762
Update homeassistant-core-install.sh 2025-01-04 19:49:26 +01:00
community-scripts-pr-app[bot]
32572c6072
Update CHANGELOG.md (#1243)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-01-04 19:34:55 +01:00
CanbiZ
a1fe451fe2
Fix gpg key pf2tools & 5etools (#1242)
* Update pf2etools-install.sh

* Fix GPG 5F
2025-01-04 19:33:48 +01:00
CanbiZ
ba97af3b9f
Fix Deadsnake Repository 2025-01-04 19:29:24 +01:00
CanbiZ
859f3dffc3
Update homeassistant-core-install.sh 2025-01-04 19:14:54 +01:00
CanbiZ
84b15641fb
fix libtiff6 2025-01-04 19:05:46 +01:00
CanbiZ
a99bdb9e97
Update homeassistant-core-install.sh 2025-01-04 19:04:23 +01:00
CanbiZ
6035469047
idention 2025-01-04 18:45:50 +01:00
CanbiZ
982a19cf28
fix space in apt-get 2025-01-04 18:41:00 +01:00
CanbiZ
e3299a67ec
add missing " 2025-01-04 18:39:43 +01:00
CanbiZ
6f557aa394
Update homeassistant-core-install.sh 2025-01-04 18:25:15 +01:00
community-scripts-pr-app[bot]
38f4a98e4f
Update CHANGELOG.md (#1237) 2025-01-04 18:19:45 +01:00
CanbiZ
5967a7f496
Homar: Fix missing curl dependency (#1238) 2025-01-04 18:17:19 +01:00
CanbiZ
67cdc35d02
Homeassistan Core: Fix Python3 and add missing dependencies (#1236) 2025-01-04 18:14:16 +01:00
7 changed files with 53 additions and 3 deletions

View File

@ -22,6 +22,9 @@ Do not break established syntax in this file, as it is automatically updated by
### 🚀 Updated Scripts ### 🚀 Updated Scripts
- Fix gpg key pf2tools & 5etools [@MickLesk](https://github.com/MickLesk) ([#1242](https://github.com/community-scripts/ProxmoxVE/pull/1242))
- Homarr: Fix missing curl dependency [@MickLesk](https://github.com/MickLesk) ([#1238](https://github.com/community-scripts/ProxmoxVE/pull/1238))
- Homeassistan Core: Fix Python3 and add missing dependencies [@MickLesk](https://github.com/MickLesk) ([#1236](https://github.com/community-scripts/ProxmoxVE/pull/1236))
- Fix: Update Python for HomeAssistant [@MickLesk](https://github.com/MickLesk) ([#1227](https://github.com/community-scripts/ProxmoxVE/pull/1227)) - Fix: Update Python for HomeAssistant [@MickLesk](https://github.com/MickLesk) ([#1227](https://github.com/community-scripts/ProxmoxVE/pull/1227))
- OneDev: Add git-lfs [@MickLesk](https://github.com/MickLesk) ([#1225](https://github.com/community-scripts/ProxmoxVE/pull/1225)) - OneDev: Add git-lfs [@MickLesk](https://github.com/MickLesk) ([#1225](https://github.com/community-scripts/ProxmoxVE/pull/1225))
- Pf2eTools & 5eTools: Fixing npm build [@TheRealVira](https://github.com/TheRealVira) ([#1213](https://github.com/community-scripts/ProxmoxVE/pull/1213)) - Pf2eTools & 5eTools: Fixing npm build [@TheRealVira](https://github.com/TheRealVira) ([#1213](https://github.com/community-scripts/ProxmoxVE/pull/1213))

View File

@ -45,6 +45,7 @@ function update_script() {
# Execute Update # Execute Update
msg_info "Updating base 5etools" msg_info "Updating base 5etools"
cd /opt
wget -q "https://github.com/5etools-mirror-3/5etools-src/archive/refs/tags/${RELEASE}.zip" wget -q "https://github.com/5etools-mirror-3/5etools-src/archive/refs/tags/${RELEASE}.zip"
unzip -q "${RELEASE}.zip" unzip -q "${RELEASE}.zip"
mv "/opt/${APP}/img" "/opt/img-backup" mv "/opt/${APP}/img" "/opt/img-backup"
@ -93,7 +94,8 @@ function update_script() {
# Cleaning up # Cleaning up
msg_info "Cleaning Up" msg_info "Cleaning Up"
rm "${IMG_RELEASE}.zip" rm -rf /opt/${RELEASE}.zip
rm -rf ${IMG_RELEASE}.zip
$STD apt-get -y autoremove $STD apt-get -y autoremove
$STD apt-get -y autoclean $STD apt-get -y autoclean
msg_ok "Cleanup Completed" msg_ok "Cleanup Completed"

View File

@ -62,7 +62,7 @@ function update_script() {
# Cleaning up # Cleaning up
msg_info "Cleaning Up" msg_info "Cleaning Up"
rm "${RELEASE}.zip" rm -rf /opt/${APP}/${RELEASE}.zip
$STD apt-get -y autoremove $STD apt-get -y autoremove
$STD apt-get -y autoclean $STD apt-get -y autoclean
msg_ok "Cleanup Completed" msg_ok "Cleanup Completed"

View File

@ -20,6 +20,8 @@ $STD apt-get install -y \
mc \ mc \
sudo \ sudo \
git \ git \
gpg \
ca-certificates \
apache2 apache2
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"

View File

@ -19,6 +19,7 @@ msg_info "Installing Dependencies"
$STD apt-get install -y \ $STD apt-get install -y \
sudo \ sudo \
mc \ mc \
curl \
ca-certificates \ ca-certificates \
gnupg \ gnupg \
make \ make \

View File

@ -14,9 +14,49 @@ network_check
update_os update_os
msg_info "Installing Dependencies (Patience)" msg_info "Installing Dependencies (Patience)"
$STD apt-get install -y git curl sudo mc bluez libffi-dev libssl-dev libjpeg-dev zlib1g-dev autoconf build-essential libopenjp2-7 libturbojpeg0-dev ffmpeg liblapack3 liblapack-dev dbus-broker libpcap-dev libavdevice-dev libavformat-dev libavcodec-dev libavutil-dev libavfilter-dev libmariadb-dev-compat libatlas-base-dev pip python3.13-dev $STD apt-get install -y \
curl \
git \
sudo \
mc \
gnupg \
ca-certificates \
bluez \
libtiff6 \
tzdata \
libffi-dev \
libssl-dev \
libjpeg-dev \
zlib1g-dev \
autoconf \
build-essential \
libopenjp2-7 \
libturbojpeg0-dev \
ffmpeg \
liblapack3 \
liblapack-dev \
dbus-broker \
libpcap-dev \
libavdevice-dev \
libavformat-dev \
libavcodec-dev \
libavutil-dev \
libavfilter-dev \
libmariadb-dev-compat \
libatlas-base-dev \
software-properties-common
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Setup Python3"
$STD add-apt-repository -y ppa:deadsnakes/ppa
$STD apt-get update
$STD apt-get install -y \
python3.13-* \
python3-pip \
python3.13-dev \
python3.13-venv
msg_ok "Setup Python3"
msg_info "Installing UV" msg_info "Installing UV"
$STD pip install uv $STD pip install uv
msg_ok "Installed UV" msg_ok "Installed UV"

View File

@ -20,6 +20,8 @@ $STD apt-get install -y \
mc \ mc \
sudo \ sudo \
apache2 \ apache2 \
gpg \
ca-certificates \
git git
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"