Compare commits

..

2 Commits

Author SHA1 Message Date
github-actions[bot]
2e106100ad Update CHANGELOG.md 2026-09-15 18:25:39 +00:00
Christian Forgács
0b536d83c3 borg-ui: missing dependency sshpass (#17286)
Co-authored-by: Christian Forgács <christian@wunderbit.de>
2026-09-15 20:25:11 +02:00
4 changed files with 3 additions and 3 deletions

View File

@@ -553,6 +553,7 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
- #### 🐞 Bug Fixes - #### 🐞 Bug Fixes
- borg-ui: missing dependency `sshpass` [@christian-forgacs](https://github.com/christian-forgacs) ([#17286](https://github.com/community-scripts/ProxmoxVE/pull/17286))
- tracearr: copy packages/emails into the deploy tree [@connorgallopo](https://github.com/connorgallopo) ([#17268](https://github.com/community-scripts/ProxmoxVE/pull/17268)) - tracearr: copy packages/emails into the deploy tree [@connorgallopo](https://github.com/connorgallopo) ([#17268](https://github.com/community-scripts/ProxmoxVE/pull/17268))
- Immich: Pin to v3.2.1 [@vhsdream](https://github.com/vhsdream) ([#17264](https://github.com/community-scripts/ProxmoxVE/pull/17264)) - Immich: Pin to v3.2.1 [@vhsdream](https://github.com/vhsdream) ([#17264](https://github.com/community-scripts/ProxmoxVE/pull/17264))

View File

@@ -57,7 +57,6 @@ function update_script() {
msg_info "Configuring Docmost" msg_info "Configuring Docmost"
cd /opt/docmost cd /opt/docmost
export COREPACK_ENABLE_DOWNLOAD_PROMPT=0
$STD pnpm install --force $STD pnpm install --force
$STD pnpm build $STD pnpm build
msg_ok "Configured Docmost" msg_ok "Configured Docmost"

View File

@@ -28,7 +28,8 @@ $STD apt install -y \
fuse3 \ fuse3 \
rsync \ rsync \
sshfs \ sshfs \
openssh-client openssh-client \
sshpass
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
UV_PYTHON="3.12" setup_uv UV_PYTHON="3.12" setup_uv

View File

@@ -48,7 +48,6 @@ sed -i -e "s|APP_SECRET=.*|APP_SECRET=$(openssl rand -base64 32 | tr -dc 'a-zA-Z
-e "s|^STORAGE_DRIVER=azure|#STORAGE_DRIVER=azure|" \ -e "s|^STORAGE_DRIVER=azure|#STORAGE_DRIVER=azure|" \
/opt/docmost/.env /opt/docmost/.env
export NODE_OPTIONS="--max-old-space-size=2048" export NODE_OPTIONS="--max-old-space-size=2048"
export COREPACK_ENABLE_DOWNLOAD_PROMPT=0
$STD pnpm install $STD pnpm install
$STD pnpm build $STD pnpm build
msg_ok "Configured Docmost" msg_ok "Configured Docmost"