mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-03-09 08:48:12 +00:00
Compare commits
1 Commits
main
...
tremor021-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
56d1988312 |
28
CHANGELOG.md
28
CHANGELOG.md
@@ -420,42 +420,14 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
## 2026-03-09
|
|
||||||
|
|
||||||
### 🚀 Updated Scripts
|
|
||||||
|
|
||||||
- #### 🐞 Bug Fixes
|
|
||||||
|
|
||||||
- Change cronjob setup to use www-data user [@opastorello](https://github.com/opastorello) ([#12695](https://github.com/community-scripts/ProxmoxVE/pull/12695))
|
|
||||||
- RustDesk Server: Fix check_for_gh_release function call [@tremor021](https://github.com/tremor021) ([#12694](https://github.com/community-scripts/ProxmoxVE/pull/12694))
|
|
||||||
|
|
||||||
- #### 💥 Breaking Changes
|
|
||||||
|
|
||||||
- Reactive Resume: rewrite for v5 using original repo amruthpilla/reactive-resume [@MickLesk](https://github.com/MickLesk) ([#12705](https://github.com/community-scripts/ProxmoxVE/pull/12705))
|
|
||||||
|
|
||||||
### 💾 Core
|
|
||||||
|
|
||||||
- #### ✨ New Features
|
|
||||||
|
|
||||||
- tools.func: extend hwaccel with ROCm [@MickLesk](https://github.com/MickLesk) ([#12707](https://github.com/community-scripts/ProxmoxVE/pull/12707))
|
|
||||||
|
|
||||||
## 2026-03-08
|
## 2026-03-08
|
||||||
|
|
||||||
### 🚀 Updated Scripts
|
### 🚀 Updated Scripts
|
||||||
|
|
||||||
- #### 🐞 Bug Fixes
|
- #### 🐞 Bug Fixes
|
||||||
|
|
||||||
- [Fix] Immich: chown install dir before machine-learning update [@vhsdream](https://github.com/vhsdream) ([#12684](https://github.com/community-scripts/ProxmoxVE/pull/12684))
|
|
||||||
- [Fix] Scanopy: Build generate-fixtures [@vhsdream](https://github.com/vhsdream) ([#12686](https://github.com/community-scripts/ProxmoxVE/pull/12686))
|
|
||||||
- fix: rustdeskserver: use correct repo string [@CrazyWolf13](https://github.com/CrazyWolf13) ([#12682](https://github.com/community-scripts/ProxmoxVE/pull/12682))
|
|
||||||
- NZBGet: Fixes for RAR5 handling [@tremor021](https://github.com/tremor021) ([#12675](https://github.com/community-scripts/ProxmoxVE/pull/12675))
|
- NZBGet: Fixes for RAR5 handling [@tremor021](https://github.com/tremor021) ([#12675](https://github.com/community-scripts/ProxmoxVE/pull/12675))
|
||||||
|
|
||||||
### 🌐 Website
|
|
||||||
|
|
||||||
- #### 🐞 Bug Fixes
|
|
||||||
|
|
||||||
- LXC-Execute: Fix slug [@tremor021](https://github.com/tremor021) ([#12681](https://github.com/community-scripts/ProxmoxVE/pull/12681))
|
|
||||||
|
|
||||||
## 2026-03-07
|
## 2026-03-07
|
||||||
|
|
||||||
### 🆕 New Scripts
|
### 🆕 New Scripts
|
||||||
|
|||||||
@@ -213,8 +213,7 @@ EOF
|
|||||||
msg_ok "Updated Immich server, web, cli and plugins"
|
msg_ok "Updated Immich server, web, cli and plugins"
|
||||||
|
|
||||||
cd "$SRC_DIR"/machine-learning
|
cd "$SRC_DIR"/machine-learning
|
||||||
mkdir -p "$ML_DIR"
|
mkdir -p "$ML_DIR" && chown -R immich:immich "$ML_DIR"
|
||||||
chown -R immich:immich "$INSTALL_DIR"
|
|
||||||
chown immich:immich ./uv.lock
|
chown immich:immich ./uv.lock
|
||||||
export VIRTUAL_ENV="${ML_DIR}"/ml-venv
|
export VIRTUAL_ENV="${ML_DIR}"/ml-venv
|
||||||
if [[ -f ~/.openvino ]]; then
|
if [[ -f ~/.openvino ]]; then
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: vhsdream | MickLesk (CanbiZ)
|
# Author: vhsdream
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
# Source: https://rxresume.org | Github: https://github.com/amruthpillai/reactive-resume
|
# Source: https://rxresume.org | Github: https://github.com/lazy-media/Reactive-Resume
|
||||||
|
|
||||||
APP="Reactive-Resume"
|
APP="Reactive-Resume"
|
||||||
var_tags="${var_tags:-documents}"
|
var_tags="${var_tags:-documents}"
|
||||||
@@ -24,29 +24,62 @@ function update_script() {
|
|||||||
check_container_storage
|
check_container_storage
|
||||||
check_container_resources
|
check_container_resources
|
||||||
|
|
||||||
if [[ ! -f /etc/systemd/system/reactive-resume.service ]]; then
|
if [[ ! -f /etc/systemd/system/Reactive-Resume.service ]]; then
|
||||||
msg_error "No $APP Installation Found!"
|
msg_error "No $APP Installation Found!"
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
if check_for_gh_release "reactive-resume" "amruthpillai/reactive-resume"; then
|
if check_for_gh_release "Reactive-Resume" "lazy-media/Reactive-Resume"; then
|
||||||
msg_info "Stopping services"
|
msg_info "Stopping services"
|
||||||
systemctl stop reactive-resume
|
systemctl stop Reactive-Resume
|
||||||
msg_ok "Stopped services"
|
msg_ok "Stopped services"
|
||||||
|
|
||||||
cp /opt/reactive-resume/.env /opt/reactive-resume.env.bak
|
cp /opt/Reactive-Resume/.env /opt/rxresume.env
|
||||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "reactive-resume" "amruthpillai/reactive-resume" "tarball" "latest" "/opt/reactive-resume"
|
fetch_and_deploy_gh_release "Reactive-Resume" "lazy-media/Reactive-Resume" "tarball" "latest" "/opt/Reactive-Resume"
|
||||||
|
|
||||||
msg_info "Updating Reactive Resume (Patience)"
|
msg_info "Updating Reactive-Resume"
|
||||||
cd /opt/reactive-resume
|
cd /opt/Reactive-Resume
|
||||||
|
export PUPPETEER_SKIP_DOWNLOAD="true"
|
||||||
|
export NEXT_TELEMETRY_DISABLED=1
|
||||||
export CI="true"
|
export CI="true"
|
||||||
export NODE_ENV="production"
|
export NODE_ENV="production"
|
||||||
$STD pnpm install --frozen-lockfile
|
$STD pnpm install --frozen-lockfile
|
||||||
$STD pnpm run build
|
$STD pnpm run build
|
||||||
mv /opt/reactive-resume.env.bak /opt/reactive-resume/.env
|
$STD pnpm run prisma:generate
|
||||||
msg_ok "Updated Reactive Resume"
|
mv /opt/rxresume.env /opt/Reactive-Resume/.env
|
||||||
|
msg_ok "Updated Reactive-Resume"
|
||||||
|
|
||||||
|
msg_info "Updating Minio"
|
||||||
|
systemctl stop minio
|
||||||
|
cd /tmp
|
||||||
|
curl -fsSL https://dl.min.io/server/minio/release/linux-amd64/minio.deb -o minio.deb
|
||||||
|
$STD dpkg -i minio.deb
|
||||||
|
rm -f /tmp/minio.deb
|
||||||
|
msg_ok "Updated Minio"
|
||||||
|
|
||||||
|
msg_info "Updating Browserless (Patience)"
|
||||||
|
systemctl stop browserless
|
||||||
|
cp /opt/browserless/.env /opt/browserless.env
|
||||||
|
rm -rf /opt/browserless
|
||||||
|
brwsr_tmp=$(mktemp)
|
||||||
|
TAG=$(curl -fsSL https://api.github.com/repos/browserless/browserless/tags?per_page=1 | grep "name" | awk '{print substr($2, 3, length($2)-4) }')
|
||||||
|
curl -fsSL https://github.com/browserless/browserless/archive/refs/tags/v"$TAG".zip -o "$brwsr_tmp"
|
||||||
|
$STD unzip "$brwsr_tmp"
|
||||||
|
mv browserless-"$TAG"/ /opt/browserless
|
||||||
|
cd /opt/browserless
|
||||||
|
$STD npm install typescript
|
||||||
|
$STD npm install esbuild
|
||||||
|
$STD npm install
|
||||||
|
rm -rf src/routes/{chrome,edge,firefox,webkit}
|
||||||
|
$STD node_modules/playwright-core/cli.js install --with-deps chromium
|
||||||
|
$STD npm run build
|
||||||
|
$STD npm run build:function
|
||||||
|
$STD npm prune production
|
||||||
|
mv /opt/browserless.env /opt/browserless/.env
|
||||||
|
rm -f "$brwsr_tmp"
|
||||||
|
msg_ok "Updated Browserless"
|
||||||
|
|
||||||
msg_info "Restarting services"
|
msg_info "Restarting services"
|
||||||
systemctl start chromium-printer reactive-resume
|
systemctl start minio Reactive-Resume browserless
|
||||||
msg_ok "Restarted services"
|
msg_ok "Restarted services"
|
||||||
msg_ok "Updated successfully!"
|
msg_ok "Updated successfully!"
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ function update_script() {
|
|||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if check_for_gh_release "rustdesk-hbbs" "lejianwen/rustdesk-server"; then
|
if check_for_gh_release "rustdesk-api"; then
|
||||||
msg_info "Stopping Service"
|
msg_info "Stopping Service"
|
||||||
systemctl stop rustdesk-hbbr
|
systemctl stop rustdesk-hbbr
|
||||||
systemctl stop rustdesk-hbbs
|
systemctl stop rustdesk-hbbs
|
||||||
|
|||||||
@@ -53,13 +53,6 @@ function update_script() {
|
|||||||
fi
|
fi
|
||||||
sed -i 's|_TARGET=.*$|_URL=http://127.0.0.1:60072|' /opt/scanopy/.env
|
sed -i 's|_TARGET=.*$|_URL=http://127.0.0.1:60072|' /opt/scanopy/.env
|
||||||
|
|
||||||
msg_info "Building Scanopy Server (patience)"
|
|
||||||
cd /opt/scanopy/backend
|
|
||||||
$STD cargo build --release --bin server --bin generate-fixtures
|
|
||||||
$STD ./target/release/generate-fixtures --output-dir /opt/scanopy/ui/src/lib/data
|
|
||||||
mv ./target/release/server /usr/bin/scanopy-server
|
|
||||||
msg_ok "Built Scanopy Server"
|
|
||||||
|
|
||||||
msg_info "Creating frontend UI"
|
msg_info "Creating frontend UI"
|
||||||
export PUBLIC_SERVER_HOSTNAME=default
|
export PUBLIC_SERVER_HOSTNAME=default
|
||||||
export PUBLIC_SERVER_PORT=""
|
export PUBLIC_SERVER_PORT=""
|
||||||
@@ -68,6 +61,12 @@ function update_script() {
|
|||||||
$STD npm run build
|
$STD npm run build
|
||||||
msg_ok "Created frontend UI"
|
msg_ok "Created frontend UI"
|
||||||
|
|
||||||
|
msg_info "Building Scanopy Server (patience)"
|
||||||
|
cd /opt/scanopy/backend
|
||||||
|
$STD cargo build --release --bin server
|
||||||
|
mv ./target/release/server /usr/bin/scanopy-server
|
||||||
|
msg_ok "Built Scanopy Server"
|
||||||
|
|
||||||
if [[ -f /etc/systemd/system/scanopy-daemon.service ]]; then
|
if [[ -f /etc/systemd/system/scanopy-daemon.service ]]; then
|
||||||
fetch_and_deploy_gh_release "Scanopy Daemon" "scanopy/scanopy" "singlefile" "latest" "/usr/local/bin" "scanopy-daemon-linux-amd64"
|
fetch_and_deploy_gh_release "Scanopy Daemon" "scanopy/scanopy" "singlefile" "latest" "/usr/local/bin" "scanopy-daemon-linux-amd64"
|
||||||
mv "/usr/local/bin/Scanopy Daemon" /usr/local/bin/scanopy-daemon
|
mv "/usr/local/bin/Scanopy Daemon" /usr/local/bin/scanopy-daemon
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"generated": "2026-03-09T06:22:44Z",
|
"generated": "2026-03-08T12:08:10Z",
|
||||||
"versions": [
|
"versions": [
|
||||||
{
|
{
|
||||||
"slug": "2fauth",
|
"slug": "2fauth",
|
||||||
@@ -67,9 +67,9 @@
|
|||||||
{
|
{
|
||||||
"slug": "autobrr",
|
"slug": "autobrr",
|
||||||
"repo": "autobrr/autobrr",
|
"repo": "autobrr/autobrr",
|
||||||
"version": "v1.74.0",
|
"version": "v1.73.0",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-08T21:45:41Z"
|
"date": "2026-02-13T16:37:28Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "autocaliweb",
|
"slug": "autocaliweb",
|
||||||
@@ -151,9 +151,9 @@
|
|||||||
{
|
{
|
||||||
"slug": "booklore",
|
"slug": "booklore",
|
||||||
"repo": "booklore-app/BookLore",
|
"repo": "booklore-app/BookLore",
|
||||||
"version": "v2.1.0",
|
"version": "v2.0.6",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-08T20:27:24Z"
|
"date": "2026-03-06T19:16:29Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "bookstack",
|
"slug": "bookstack",
|
||||||
@@ -270,23 +270,23 @@
|
|||||||
{
|
{
|
||||||
"slug": "databasus",
|
"slug": "databasus",
|
||||||
"repo": "databasus/databasus",
|
"repo": "databasus/databasus",
|
||||||
"version": "v3.18.0",
|
"version": "v3.17.0",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-08T20:19:15Z"
|
"date": "2026-03-06T07:07:22Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "dawarich",
|
"slug": "dawarich",
|
||||||
"repo": "Freika/dawarich",
|
"repo": "Freika/dawarich",
|
||||||
"version": "1.3.2",
|
"version": "1.3.1",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-08T20:37:50Z"
|
"date": "2026-02-27T19:47:40Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "discopanel",
|
"slug": "discopanel",
|
||||||
"repo": "nickheyer/discopanel",
|
"repo": "nickheyer/discopanel",
|
||||||
"version": "v2.0.2",
|
"version": "v2.0.1",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-09T03:38:49Z"
|
"date": "2026-03-07T02:43:33Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "dispatcharr",
|
"slug": "dispatcharr",
|
||||||
@@ -312,9 +312,9 @@
|
|||||||
{
|
{
|
||||||
"slug": "domain-monitor",
|
"slug": "domain-monitor",
|
||||||
"repo": "Hosteroid/domain-monitor",
|
"repo": "Hosteroid/domain-monitor",
|
||||||
"version": "v1.1.5",
|
"version": "v1.1.4",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-08T19:17:09Z"
|
"date": "2026-03-02T09:25:01Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "donetick",
|
"slug": "donetick",
|
||||||
@@ -347,9 +347,9 @@
|
|||||||
{
|
{
|
||||||
"slug": "elementsynapse",
|
"slug": "elementsynapse",
|
||||||
"repo": "etkecc/synapse-admin",
|
"repo": "etkecc/synapse-admin",
|
||||||
"version": "v0.11.4-etke54",
|
"version": "v0.11.1-etke53",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-08T12:37:07Z"
|
"date": "2026-02-03T20:38:15Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "emby",
|
"slug": "emby",
|
||||||
@@ -389,9 +389,9 @@
|
|||||||
{
|
{
|
||||||
"slug": "fladder",
|
"slug": "fladder",
|
||||||
"repo": "DonutWare/Fladder",
|
"repo": "DonutWare/Fladder",
|
||||||
"version": "v0.10.2",
|
"version": "v0.10.1",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-08T15:28:11Z"
|
"date": "2026-02-21T12:45:53Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "flaresolverr",
|
"slug": "flaresolverr",
|
||||||
@@ -620,9 +620,9 @@
|
|||||||
{
|
{
|
||||||
"slug": "jackett",
|
"slug": "jackett",
|
||||||
"repo": "Jackett/Jackett",
|
"repo": "Jackett/Jackett",
|
||||||
"version": "v0.24.1323",
|
"version": "v0.24.1316",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-09T05:55:36Z"
|
"date": "2026-03-08T05:59:08Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "jellystat",
|
"slug": "jellystat",
|
||||||
@@ -879,9 +879,9 @@
|
|||||||
{
|
{
|
||||||
"slug": "metube",
|
"slug": "metube",
|
||||||
"repo": "alexta69/metube",
|
"repo": "alexta69/metube",
|
||||||
"version": "2026.03.08",
|
"version": "2026.03.07",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-08T20:28:19Z"
|
"date": "2026-03-07T14:14:57Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "miniflux",
|
"slug": "miniflux",
|
||||||
@@ -1236,9 +1236,9 @@
|
|||||||
{
|
{
|
||||||
"slug": "pulse",
|
"slug": "pulse",
|
||||||
"repo": "rcourtman/Pulse",
|
"repo": "rcourtman/Pulse",
|
||||||
"version": "v5.1.22",
|
"version": "v5.1.21",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-08T12:24:34Z"
|
"date": "2026-03-06T12:13:08Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "pve-scripts-local",
|
"slug": "pve-scripts-local",
|
||||||
@@ -1397,9 +1397,9 @@
|
|||||||
{
|
{
|
||||||
"slug": "semaphore",
|
"slug": "semaphore",
|
||||||
"repo": "semaphoreui/semaphore",
|
"repo": "semaphoreui/semaphore",
|
||||||
"version": "v2.17.17",
|
"version": "v2.17.16",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-08T21:42:11Z"
|
"date": "2026-03-05T12:39:05Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "shelfmark",
|
"slug": "shelfmark",
|
||||||
@@ -1537,9 +1537,9 @@
|
|||||||
{
|
{
|
||||||
"slug": "termix",
|
"slug": "termix",
|
||||||
"repo": "Termix-SSH/Termix",
|
"repo": "Termix-SSH/Termix",
|
||||||
"version": "release-1.11.2-tag",
|
"version": "release-1.11.1-tag",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-08T23:27:30Z"
|
"date": "2026-02-13T04:49:16Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "the-lounge",
|
"slug": "the-lounge",
|
||||||
@@ -1572,9 +1572,9 @@
|
|||||||
{
|
{
|
||||||
"slug": "tinyauth",
|
"slug": "tinyauth",
|
||||||
"repo": "steveiliop56/tinyauth",
|
"repo": "steveiliop56/tinyauth",
|
||||||
"version": "v5.0.2",
|
"version": "v5.0.1",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-08T15:46:59Z"
|
"date": "2026-03-04T21:05:05Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "traccar",
|
"slug": "traccar",
|
||||||
@@ -1803,9 +1803,9 @@
|
|||||||
{
|
{
|
||||||
"slug": "yubal",
|
"slug": "yubal",
|
||||||
"repo": "guillevc/yubal",
|
"repo": "guillevc/yubal",
|
||||||
"version": "v0.7.0",
|
"version": "v0.6.3",
|
||||||
"pinned": false,
|
"pinned": false,
|
||||||
"date": "2026-03-08T13:37:49Z"
|
"date": "2026-03-07T03:24:05Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "zerobyte",
|
"slug": "zerobyte",
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
"documentation": "https://docs.rxresume.org/",
|
"documentation": "https://docs.rxresume.org/",
|
||||||
"website": "https://rxresume.org",
|
"website": "https://rxresume.org",
|
||||||
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/reactive-resume.webp",
|
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/reactive-resume.webp",
|
||||||
"config_path": "/opt/reactive-resume/.env",
|
"config_path": "/opt/Reactive-Resume/.env",
|
||||||
"description": "A one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever.",
|
"description": "A one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever.",
|
||||||
"install_methods": [
|
"install_methods": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -208,7 +208,7 @@ msg_info "Building OpenVino Model"
|
|||||||
cd /models
|
cd /models
|
||||||
wget -q http://download.tensorflow.org/models/object_detection/ssdlite_mobilenet_v2_coco_2018_05_09.tar.gz
|
wget -q http://download.tensorflow.org/models/object_detection/ssdlite_mobilenet_v2_coco_2018_05_09.tar.gz
|
||||||
$STD tar -zxf ssdlite_mobilenet_v2_coco_2018_05_09.tar.gz --no-same-owner
|
$STD tar -zxf ssdlite_mobilenet_v2_coco_2018_05_09.tar.gz --no-same-owner
|
||||||
if python3 /opt/frigate/docker/main/build_ov_model.py &>/dev/null; then
|
if $STD python3 /opt/frigate/docker/main/build_ov_model.py; then
|
||||||
cp /models/ssdlite_mobilenet_v2.xml /openvino-model/
|
cp /models/ssdlite_mobilenet_v2.xml /openvino-model/
|
||||||
cp /models/ssdlite_mobilenet_v2.bin /openvino-model/
|
cp /models/ssdlite_mobilenet_v2.bin /openvino-model/
|
||||||
wget -q https://github.com/openvinotoolkit/open_model_zoo/raw/master/data/dataset_classes/coco_91cl_bkgr.txt -O /openvino-model/coco_91cl_bkgr.txt
|
wget -q https://github.com/openvinotoolkit/open_model_zoo/raw/master/data/dataset_classes/coco_91cl_bkgr.txt -O /openvino-model/coco_91cl_bkgr.txt
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ rm -rf /opt/glpi-${RELEASE}.tgz
|
|||||||
msg_ok "Setup Service"
|
msg_ok "Setup Service"
|
||||||
|
|
||||||
msg_info "Setup Cronjob"
|
msg_info "Setup Cronjob"
|
||||||
echo "* * * * * php /opt/glpi/front/cron.php" | crontab -u www-data -
|
echo "* * * * * php /opt/glpi/front/cron.php" | crontab -
|
||||||
msg_ok "Setup Cronjob"
|
msg_ok "Setup Cronjob"
|
||||||
|
|
||||||
msg_info "Update PHP Params"
|
msg_info "Update PHP Params"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: vhsdream | Rewrite: MickLesk (CanbiZ)
|
# Author: vhsdream
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
# Source: https://rxresume.org | Github: https://github.com/amruthpillai/reactive-resume
|
# Source: https://rxresume.org | Github: https://github.com/lazy-media/Reactive-Resume
|
||||||
|
|
||||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||||
color
|
color
|
||||||
@@ -13,106 +13,149 @@ setting_up_container
|
|||||||
network_check
|
network_check
|
||||||
update_os
|
update_os
|
||||||
|
|
||||||
PG_VERSION="16" setup_postgresql
|
|
||||||
PG_DB_NAME="reactive_resume" PG_DB_USER="reactive_resume" setup_postgresql_db
|
|
||||||
NODE_VERSION="22" NODE_MODULE="pnpm@latest" setup_nodejs
|
|
||||||
|
|
||||||
msg_info "Installing Dependencies"
|
msg_info "Installing Dependencies"
|
||||||
$STD apt install -y chromium
|
cd /tmp
|
||||||
|
curl -fsSL https://dl.min.io/server/minio/release/linux-amd64/minio.deb -o minio.deb
|
||||||
|
$STD dpkg -i minio.deb
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
fetch_and_deploy_gh_release "reactive-resume" "amruthpillai/reactive-resume" "tarball"
|
PG_VERSION="16" setup_postgresql
|
||||||
|
PG_DB_NAME="rxresume" PG_DB_USER="rxresume" PG_DB_GRANT_SUPERUSER="true" setup_postgresql_db
|
||||||
|
NODE_VERSION="24" NODE_MODULE="pnpm@latest" setup_nodejs
|
||||||
|
fetch_and_deploy_gh_release "Reactive-Resume" "lazy-media/Reactive-Resume" "tarball"
|
||||||
|
|
||||||
msg_info "Building Reactive Resume (Patience)"
|
msg_info "Setting up Reactive-Resume"
|
||||||
cd /opt/reactive-resume
|
MINIO_PASS=$(openssl rand -base64 48)
|
||||||
export NODE_ENV="production"
|
ACCESS_TOKEN=$(openssl rand -base64 48)
|
||||||
|
REFRESH_TOKEN=$(openssl rand -base64 48)
|
||||||
|
CHROME_TOKEN=$(openssl rand -hex 32)
|
||||||
|
TAG=$(curl -fsSL https://api.github.com/repos/browserless/browserless/tags?per_page=1 | grep "name" | awk '{print substr($2, 3, length($2)-4) }')
|
||||||
|
cd /opt/Reactive-Resume
|
||||||
export CI="true"
|
export CI="true"
|
||||||
|
export PUPPETEER_SKIP_DOWNLOAD="true"
|
||||||
|
export NODE_ENV="production"
|
||||||
|
export NEXT_TELEMETRY_DISABLED=1
|
||||||
$STD pnpm install --frozen-lockfile
|
$STD pnpm install --frozen-lockfile
|
||||||
$STD pnpm run build
|
$STD pnpm run build
|
||||||
mkdir -p /opt/reactive-resume/data
|
$STD pnpm run prisma:generate
|
||||||
msg_ok "Built Reactive Resume"
|
msg_ok "Setup Reactive-Resume"
|
||||||
|
|
||||||
msg_info "Configuring Reactive Resume"
|
msg_info "Installing Browserless (Patience)"
|
||||||
AUTH_SECRET=$(openssl rand -hex 32)
|
cd /tmp
|
||||||
|
curl -fsSL https://github.com/browserless/browserless/archive/refs/tags/v"$TAG".zip -o v"$TAG".zip
|
||||||
|
$STD unzip v"$TAG".zip
|
||||||
|
mv browserless-"$TAG" /opt/browserless
|
||||||
|
cd /opt/browserless
|
||||||
|
$STD npm install
|
||||||
|
rm -rf src/routes/{chrome,edge,firefox,webkit}
|
||||||
|
$STD node_modules/playwright-core/cli.js install --with-deps chromium
|
||||||
|
$STD npm install typescript --save-dev
|
||||||
|
$STD npm install esbuild --save-dev
|
||||||
|
$STD npm run build
|
||||||
|
$STD npm run build:function
|
||||||
|
$STD npm prune production
|
||||||
|
msg_ok "Installed Browserless"
|
||||||
|
|
||||||
cat <<EOF >/opt/reactive-resume/.env
|
msg_info "Configuring applications"
|
||||||
# Reactive Resume v5 Configuration
|
mkdir -p /opt/minio
|
||||||
|
cat <<EOF >/opt/minio/.env
|
||||||
|
MINIO_ROOT_USER="storageadmin"
|
||||||
|
MINIO_ROOT_PASSWORD="${MINIO_PASS}"
|
||||||
|
MINIO_VOLUMES=/opt/minio
|
||||||
|
MINIO_OPTS="--address :9000 --console-address 127.0.0.1:9001"
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cat <<EOF >/opt/Reactive-Resume/.env
|
||||||
NODE_ENV=production
|
NODE_ENV=production
|
||||||
PORT=3000
|
PORT=3000
|
||||||
|
# for use behind a reverse proxy, use your FQDN for PUBLIC_URL and STORAGE_URL
|
||||||
|
# To avoid issues when behind a reverse proxy with downloading PDFs, ensure that the
|
||||||
|
# storage path is accessible via a subdomain (i.e storage.yourapp.xyz) or you set your
|
||||||
|
# reverse proxy to properly rewrite the subpath (/rxresume) to point to the service
|
||||||
|
# running on port 9000 (minio).
|
||||||
|
PUBLIC_URL=http://${LOCAL_IP}:3000
|
||||||
|
STORAGE_URL=http://${LOCAL_IP}:9000/rxresume
|
||||||
|
DATABASE_URL=postgresql://${PG_DB_USER}:${PG_DB_PASS}@localhost:5432/${PG_DB_NAME}?schema=public
|
||||||
|
ACCESS_TOKEN_SECRET=${ACCESS_TOKEN}
|
||||||
|
REFRESH_TOKEN_SECRET=${REFRESH_TOKEN}
|
||||||
|
CHROME_PORT=8080
|
||||||
|
CHROME_TOKEN=${CHROME_TOKEN}
|
||||||
|
CHROME_URL=ws://localhost:8080
|
||||||
|
CHROME_IGNORE_HTTPS_ERRORS=true
|
||||||
|
MAIL_FROM=noreply@locahost
|
||||||
|
# SMTP_URL=smtp://username:password@smtp.server.mail:587 #
|
||||||
|
STORAGE_ENDPOINT=localhost
|
||||||
|
STORAGE_PORT=9000
|
||||||
|
STORAGE_REGION=us-east-1
|
||||||
|
STORAGE_BUCKET=rxresume
|
||||||
|
STORAGE_ACCESS_KEY=storageadmin
|
||||||
|
STORAGE_SECRET_KEY=${MINIO_PASS}
|
||||||
|
STORAGE_USE_SSL=false
|
||||||
|
STORAGE_SKIP_BUCKET_CHECK=false
|
||||||
|
|
||||||
# Public URL (change to your FQDN when using a reverse proxy)
|
# GitHub (OAuth, Optional)
|
||||||
APP_URL=http://${LOCAL_IP}:3000
|
|
||||||
|
|
||||||
# Database
|
|
||||||
DATABASE_URL=postgresql://${PG_DB_USER}:${PG_DB_PASS}@localhost:5432/${PG_DB_NAME}
|
|
||||||
|
|
||||||
# Authentication Secret (do not change after initial setup)
|
|
||||||
AUTH_SECRET=${AUTH_SECRET}
|
|
||||||
|
|
||||||
# Printer (headless Chromium for PDF generation)
|
|
||||||
PRINTER_ENDPOINT=http://localhost:9222
|
|
||||||
|
|
||||||
# Storage: uses local filesystem (/opt/reactive-resume/data) when S3 is not configured
|
|
||||||
# S3_ACCESS_KEY_ID=
|
|
||||||
# S3_SECRET_ACCESS_KEY=
|
|
||||||
# S3_REGION=us-east-1
|
|
||||||
# S3_ENDPOINT=
|
|
||||||
# S3_BUCKET=
|
|
||||||
# S3_FORCE_PATH_STYLE=false
|
|
||||||
|
|
||||||
# Email (optional, logs to console if not configured)
|
|
||||||
# SMTP_HOST=
|
|
||||||
# SMTP_PORT=465
|
|
||||||
# SMTP_USER=
|
|
||||||
# SMTP_PASS=
|
|
||||||
# SMTP_FROM=Reactive Resume <noreply@localhost>
|
|
||||||
|
|
||||||
# OAuth (optional)
|
|
||||||
# GITHUB_CLIENT_ID=
|
# GITHUB_CLIENT_ID=
|
||||||
# GITHUB_CLIENT_SECRET=
|
# GITHUB_CLIENT_SECRET=
|
||||||
|
# GITHUB_CALLBACK_URL=http://localhost:5173/api/auth/github/callback
|
||||||
|
|
||||||
|
# Google (OAuth, Optional)
|
||||||
# GOOGLE_CLIENT_ID=
|
# GOOGLE_CLIENT_ID=
|
||||||
# GOOGLE_CLIENT_SECRET=
|
# GOOGLE_CLIENT_SECRET=
|
||||||
|
# GOOGLE_CALLBACK_URL=http://localhost:5173/api/auth/google/callback
|
||||||
# Feature Flags
|
|
||||||
# FLAG_DISABLE_SIGNUPS=false
|
|
||||||
# FLAG_DISABLE_EMAIL_AUTH=false
|
|
||||||
EOF
|
EOF
|
||||||
msg_ok "Configured Reactive Resume"
|
|
||||||
|
cat <<EOF >/opt/browserless/.env
|
||||||
|
DEBUG=browserless*,-**:verbose
|
||||||
|
HOST=localhost
|
||||||
|
PORT=8080
|
||||||
|
TOKEN=${CHROME_TOKEN}
|
||||||
|
EOF
|
||||||
|
rm -f /tmp/v"$TAG".zip
|
||||||
|
rm -f /tmp/minio.deb
|
||||||
|
msg_ok "Configured applications"
|
||||||
|
|
||||||
msg_info "Creating Services"
|
msg_info "Creating Services"
|
||||||
cat <<EOF >/etc/systemd/system/chromium-printer.service
|
mkdir -p /etc/systemd/system/minio.service.d/
|
||||||
|
cat <<EOF >/etc/systemd/system/minio.service.d/override.conf
|
||||||
|
[Service]
|
||||||
|
User=root
|
||||||
|
Group=root
|
||||||
|
WorkingDirectory=/usr/local/bin
|
||||||
|
EnvironmentFile=/opt/minio/.env
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cat <<EOF >/etc/systemd/system/Reactive-Resume.service
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Headless Chromium for Reactive Resume PDF generation
|
Description=Reactive-Resume Service
|
||||||
After=network.target
|
After=network.target postgresql.service minio.service
|
||||||
|
Wants=postgresql.service minio.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=simple
|
WorkingDirectory=/opt/Reactive-Resume
|
||||||
ExecStart=/usr/bin/chromium --headless --disable-gpu --no-sandbox --disable-dev-shm-usage --remote-debugging-address=127.0.0.1 --remote-debugging-port=9222
|
EnvironmentFile=/opt/Reactive-Resume/.env
|
||||||
|
ExecStart=/usr/bin/pnpm run start
|
||||||
Restart=always
|
Restart=always
|
||||||
RestartSec=5
|
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat <<EOF >/etc/systemd/system/reactive-resume.service
|
cat <<EOF >/etc/systemd/system/browserless.service
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Reactive Resume
|
Description=Browserless service
|
||||||
After=network.target postgresql.service chromium-printer.service
|
After=network.target Reactive-Resume.service
|
||||||
Wants=postgresql.service chromium-printer.service
|
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
WorkingDirectory=/opt/reactive-resume
|
WorkingDirectory=/opt/browserless
|
||||||
EnvironmentFile=/opt/reactive-resume/.env
|
EnvironmentFile=/opt/browserless/.env
|
||||||
ExecStart=/usr/bin/node .output/server/index.mjs
|
ExecStart=/usr/bin/npm run start
|
||||||
Restart=always
|
Restart=unless-stopped
|
||||||
RestartSec=5
|
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
EOF
|
EOF
|
||||||
systemctl daemon-reload
|
systemctl daemon-reload
|
||||||
systemctl enable -q --now chromium-printer.service reactive-resume.service
|
systemctl enable -q --now minio.service Reactive-Resume.service browserless.service
|
||||||
msg_ok "Created Services"
|
msg_ok "Created Services"
|
||||||
|
|
||||||
motd_ssh
|
motd_ssh
|
||||||
|
|||||||
@@ -27,13 +27,6 @@ fetch_and_deploy_gh_release "Scanopy" "scanopy/scanopy" "tarball" "latest" "/opt
|
|||||||
TOOLCHAIN="$(grep "channel" /opt/scanopy/backend/rust-toolchain.toml | awk -F\" '{print $2}')"
|
TOOLCHAIN="$(grep "channel" /opt/scanopy/backend/rust-toolchain.toml | awk -F\" '{print $2}')"
|
||||||
RUST_TOOLCHAIN=$TOOLCHAIN setup_rust
|
RUST_TOOLCHAIN=$TOOLCHAIN setup_rust
|
||||||
|
|
||||||
msg_info "Building Scanopy Server (patience)"
|
|
||||||
cd /opt/scanopy/backend
|
|
||||||
$STD cargo build --release --bin server --bin generate-fixtures
|
|
||||||
$STD ./target/release/generate-fixtures --output-dir /opt/scanopy/ui/src/lib/data
|
|
||||||
mv ./target/release/server /usr/bin/scanopy-server
|
|
||||||
msg_ok "Built Scanopy Server"
|
|
||||||
|
|
||||||
msg_info "Creating frontend UI"
|
msg_info "Creating frontend UI"
|
||||||
export PUBLIC_SERVER_HOSTNAME=default
|
export PUBLIC_SERVER_HOSTNAME=default
|
||||||
export PUBLIC_SERVER_PORT=""
|
export PUBLIC_SERVER_PORT=""
|
||||||
@@ -42,6 +35,12 @@ $STD npm ci --no-fund --no-audit
|
|||||||
$STD npm run build
|
$STD npm run build
|
||||||
msg_ok "Created frontend UI"
|
msg_ok "Created frontend UI"
|
||||||
|
|
||||||
|
msg_info "Building Scanopy Server (patience)"
|
||||||
|
cd /opt/scanopy/backend
|
||||||
|
$STD cargo build --release --bin server
|
||||||
|
mv ./target/release/server /usr/bin/scanopy-server
|
||||||
|
msg_ok "Built Scanopy Server"
|
||||||
|
|
||||||
msg_info "Configuring server for first-run"
|
msg_info "Configuring server for first-run"
|
||||||
cat <<EOF >/opt/scanopy/.env
|
cat <<EOF >/opt/scanopy/.env
|
||||||
### - SERVER
|
### - SERVER
|
||||||
|
|||||||
@@ -4512,8 +4512,9 @@ _setup_amd_gpu() {
|
|||||||
fi
|
fi
|
||||||
# Ubuntu includes AMD firmware in linux-firmware by default
|
# Ubuntu includes AMD firmware in linux-firmware by default
|
||||||
|
|
||||||
# ROCm compute stack (OpenCL + HIP)
|
# ROCm for compute (optional - large download)
|
||||||
_setup_rocm "$os_id" "$os_codename"
|
# Uncomment if needed:
|
||||||
|
# $STD apt -y install rocm-opencl-runtime 2>/dev/null || true
|
||||||
|
|
||||||
msg_ok "AMD GPU configured"
|
msg_ok "AMD GPU configured"
|
||||||
}
|
}
|
||||||
@@ -4538,102 +4539,9 @@ _setup_amd_apu() {
|
|||||||
$STD apt -y install firmware-amd-graphics 2>/dev/null || true
|
$STD apt -y install firmware-amd-graphics 2>/dev/null || true
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# ROCm compute stack (OpenCL + HIP) - also works for many APUs
|
|
||||||
_setup_rocm "$os_id" "$os_codename"
|
|
||||||
|
|
||||||
msg_ok "AMD APU configured"
|
msg_ok "AMD APU configured"
|
||||||
}
|
}
|
||||||
|
|
||||||
# ══════════════════════════════════════════════════════════════════════════════
|
|
||||||
# AMD ROCm Compute Setup
|
|
||||||
# Adds ROCm repository and installs the ROCm compute stack for AMD GPUs/APUs.
|
|
||||||
# Provides: OpenCL, HIP, rocm-smi, rocminfo
|
|
||||||
# Supported: Debian 12/13, Ubuntu 22.04/24.04 (amd64 only)
|
|
||||||
# ══════════════════════════════════════════════════════════════════════════════
|
|
||||||
_setup_rocm() {
|
|
||||||
local os_id="$1" os_codename="$2"
|
|
||||||
|
|
||||||
# Only amd64 is supported
|
|
||||||
if [[ "$(dpkg --print-architecture 2>/dev/null)" != "amd64" ]]; then
|
|
||||||
msg_warn "ROCm is only available for amd64 — skipping"
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
local ROCM_VERSION="7.2"
|
|
||||||
local ROCM_REPO_CODENAME
|
|
||||||
|
|
||||||
# Map OS codename to ROCm repository codename (Ubuntu-based repos)
|
|
||||||
case "${os_id}-${os_codename}" in
|
|
||||||
debian-bookworm) ROCM_REPO_CODENAME="jammy" ;;
|
|
||||||
debian-trixie | debian-sid) ROCM_REPO_CODENAME="noble" ;;
|
|
||||||
ubuntu-jammy) ROCM_REPO_CODENAME="jammy" ;;
|
|
||||||
ubuntu-noble) ROCM_REPO_CODENAME="noble" ;;
|
|
||||||
*)
|
|
||||||
msg_warn "ROCm not supported on ${os_id} ${os_codename} — skipping"
|
|
||||||
return 0
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
msg_info "Installing ROCm ${ROCM_VERSION} compute stack"
|
|
||||||
|
|
||||||
# ROCm main repository
|
|
||||||
setup_deb822_repo \
|
|
||||||
"rocm" \
|
|
||||||
"https://repo.radeon.com/rocm/rocm.gpg.key" \
|
|
||||||
"https://repo.radeon.com/rocm/apt/${ROCM_VERSION}" \
|
|
||||||
"${ROCM_REPO_CODENAME}" \
|
|
||||||
"main" \
|
|
||||||
"amd64" || {
|
|
||||||
msg_warn "Failed to add ROCm repository — skipping ROCm"
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
# AMDGPU driver repository (append to same keyring)
|
|
||||||
{
|
|
||||||
echo ""
|
|
||||||
echo "Types: deb"
|
|
||||||
echo "URIs: https://repo.radeon.com/amdgpu/${ROCM_VERSION}/ubuntu"
|
|
||||||
echo "Suites: ${ROCM_REPO_CODENAME}"
|
|
||||||
echo "Components: main"
|
|
||||||
echo "Architectures: amd64"
|
|
||||||
echo "Signed-By: /etc/apt/keyrings/rocm.gpg"
|
|
||||||
} >>/etc/apt/sources.list.d/rocm.sources
|
|
||||||
|
|
||||||
# Pin ROCm packages to prefer radeon repo
|
|
||||||
cat <<EOF >/etc/apt/preferences.d/rocm-pin-600
|
|
||||||
Package: *
|
|
||||||
Pin: release o=repo.radeon.com
|
|
||||||
Pin-Priority: 600
|
|
||||||
EOF
|
|
||||||
|
|
||||||
$STD apt update
|
|
||||||
$STD apt install -y rocm 2>/dev/null || {
|
|
||||||
msg_warn "ROCm meta-package install failed — trying minimal set"
|
|
||||||
$STD apt install -y rocm-opencl-runtime rocm-smi-lib 2>/dev/null || msg_warn "ROCm minimal install also failed"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Group membership for GPU access
|
|
||||||
usermod -aG render,video root 2>/dev/null || true
|
|
||||||
|
|
||||||
# Environment (PATH + LD_LIBRARY_PATH)
|
|
||||||
if [[ -d /opt/rocm ]]; then
|
|
||||||
cat <<'ENVEOF' >/etc/profile.d/rocm.sh
|
|
||||||
export PATH="\$PATH:/opt/rocm/bin"
|
|
||||||
export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH:+\$LD_LIBRARY_PATH:}/opt/rocm/lib"
|
|
||||||
ENVEOF
|
|
||||||
chmod +x /etc/profile.d/rocm.sh
|
|
||||||
# Also make available for current session / systemd services
|
|
||||||
echo "/opt/rocm/lib" >/etc/ld.so.conf.d/rocm.conf
|
|
||||||
ldconfig 2>/dev/null || true
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -x /opt/rocm/bin/rocminfo ]]; then
|
|
||||||
msg_ok "ROCm ${ROCM_VERSION} installed"
|
|
||||||
else
|
|
||||||
msg_warn "ROCm installed but rocminfo not found — GPU may not be available in container"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# ══════════════════════════════════════════════════════════════════════════════
|
# ══════════════════════════════════════════════════════════════════════════════
|
||||||
# NVIDIA GPU Setup
|
# NVIDIA GPU Setup
|
||||||
# ══════════════════════════════════════════════════════════════════════════════
|
# ══════════════════════════════════════════════════════════════════════════════
|
||||||
|
|||||||
Reference in New Issue
Block a user