mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-12-22 15:06:25 +01:00
Compare commits
1 Commits
main
...
fix/amd-gp
| Author | SHA1 | Date | |
|---|---|---|---|
| 5d1395ee55 |
20
CHANGELOG.md
20
CHANGELOG.md
@ -10,14 +10,6 @@
|
|||||||
> [!CAUTION]
|
> [!CAUTION]
|
||||||
Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit the project's popularity for potentially malicious purposes.
|
Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit the project's popularity for potentially malicious purposes.
|
||||||
|
|
||||||
## 2025-12-22
|
|
||||||
|
|
||||||
### 🚀 Updated Scripts
|
|
||||||
|
|
||||||
- #### 🐞 Bug Fixes
|
|
||||||
|
|
||||||
- Kometa: Fix update procedure [@tremor021](https://github.com/tremor021) ([#10217](https://github.com/community-scripts/ProxmoxVE/pull/10217))
|
|
||||||
|
|
||||||
## 2025-12-21
|
## 2025-12-21
|
||||||
|
|
||||||
### 🚀 Updated Scripts
|
### 🚀 Updated Scripts
|
||||||
@ -26,22 +18,10 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
- Typo fix in Heimdall install script [@Turcid-uwu](https://github.com/Turcid-uwu) ([#10187](https://github.com/community-scripts/ProxmoxVE/pull/10187))
|
- Typo fix in Heimdall install script [@Turcid-uwu](https://github.com/Turcid-uwu) ([#10187](https://github.com/community-scripts/ProxmoxVE/pull/10187))
|
||||||
|
|
||||||
- #### ✨ New Features
|
|
||||||
|
|
||||||
- recyclarr: add default daily cron job for recyclarr sync [@MickLesk](https://github.com/MickLesk) ([#10208](https://github.com/community-scripts/ProxmoxVE/pull/10208))
|
|
||||||
|
|
||||||
- #### 🔧 Refactor
|
- #### 🔧 Refactor
|
||||||
|
|
||||||
- Optimize Jotty installation with standalone mode [@MickLesk](https://github.com/MickLesk) ([#10207](https://github.com/community-scripts/ProxmoxVE/pull/10207))
|
|
||||||
- unifi: remove mongodb 4.4 support | bump to java 21 [@MickLesk](https://github.com/MickLesk) ([#10206](https://github.com/community-scripts/ProxmoxVE/pull/10206))
|
|
||||||
- Refactor: Backrest [@tremor021](https://github.com/tremor021) ([#10193](https://github.com/community-scripts/ProxmoxVE/pull/10193))
|
- Refactor: Backrest [@tremor021](https://github.com/tremor021) ([#10193](https://github.com/community-scripts/ProxmoxVE/pull/10193))
|
||||||
|
|
||||||
### 💾 Core
|
|
||||||
|
|
||||||
- #### ✨ New Features
|
|
||||||
|
|
||||||
- Fix AMD GPU firmware installation by adding non-free repositories [@MickLesk](https://github.com/MickLesk) ([#10205](https://github.com/community-scripts/ProxmoxVE/pull/10205))
|
|
||||||
|
|
||||||
### 🧰 Tools
|
### 🧰 Tools
|
||||||
|
|
||||||
- pihole-exporter ([#10091](https://github.com/community-scripts/ProxmoxVE/pull/10091))
|
- pihole-exporter ([#10091](https://github.com/community-scripts/ProxmoxVE/pull/10091))
|
||||||
|
|||||||
29
ct/jotty.sh
29
ct/jotty.sh
@ -48,17 +48,6 @@ function update_script() {
|
|||||||
$STD yarn --frozen-lockfile
|
$STD yarn --frozen-lockfile
|
||||||
$STD yarn next telemetry disable
|
$STD yarn next telemetry disable
|
||||||
$STD yarn build
|
$STD yarn build
|
||||||
|
|
||||||
[ -d "public" ] && cp -r public .next/standalone/
|
|
||||||
[ -d "howto" ] && cp -r howto .next/standalone/
|
|
||||||
mkdir -p .next/standalone/.next
|
|
||||||
cp -r .next/static .next/standalone/.next/
|
|
||||||
|
|
||||||
mv .next/standalone /tmp/jotty_standalone
|
|
||||||
rm -rf * .next .git .gitignore .yarn
|
|
||||||
mv /tmp/jotty_standalone/* .
|
|
||||||
mv /tmp/jotty_standalone/.[!.]* . 2>/dev/null || true
|
|
||||||
rm -rf /tmp/jotty_standalone
|
|
||||||
msg_ok "Updated jotty"
|
msg_ok "Updated jotty"
|
||||||
|
|
||||||
msg_info "Restoring configuration & data"
|
msg_info "Restoring configuration & data"
|
||||||
@ -66,24 +55,6 @@ function update_script() {
|
|||||||
$STD tar -xf /opt/data_config.tar
|
$STD tar -xf /opt/data_config.tar
|
||||||
msg_ok "Restored configuration & data"
|
msg_ok "Restored configuration & data"
|
||||||
|
|
||||||
msg_info "Updating Service"
|
|
||||||
cat <<EOF >/etc/systemd/system/jotty.service
|
|
||||||
[Unit]
|
|
||||||
Description=jotty server
|
|
||||||
After=network.target
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
WorkingDirectory=/opt/jotty
|
|
||||||
EnvironmentFile=/opt/jotty/.env
|
|
||||||
ExecStart=/usr/bin/node server.js
|
|
||||||
Restart=on-abnormal
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
||||||
EOF
|
|
||||||
systemctl daemon-reload
|
|
||||||
msg_ok "Updated Service"
|
|
||||||
|
|
||||||
msg_info "Starting Service"
|
msg_info "Starting Service"
|
||||||
systemctl start jotty
|
systemctl start jotty
|
||||||
msg_ok "Started Service"
|
msg_ok "Started Service"
|
||||||
|
|||||||
@ -41,7 +41,6 @@ function update_script() {
|
|||||||
fetch_and_deploy_gh_release "kometa" "Kometa-Team/Kometa"
|
fetch_and_deploy_gh_release "kometa" "Kometa-Team/Kometa"
|
||||||
|
|
||||||
msg_info "Updating Kometa"
|
msg_info "Updating Kometa"
|
||||||
cd /opt/kometa
|
|
||||||
$STD uv pip install -r requirements.txt --system
|
$STD uv pip install -r requirements.txt --system
|
||||||
mkdir -p config/assets
|
mkdir -p config/assets
|
||||||
cp /opt/config.yml config/config.yml
|
cp /opt/config.yml config/config.yml
|
||||||
|
|||||||
@ -28,8 +28,6 @@ function update_script() {
|
|||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
JAVA_VERSION="21" setup_java
|
|
||||||
|
|
||||||
msg_info "Updating ${APP}"
|
msg_info "Updating ${APP}"
|
||||||
$STD apt update --allow-releaseinfo-change
|
$STD apt update --allow-releaseinfo-change
|
||||||
$STD apt install -y unifi
|
$STD apt install -y unifi
|
||||||
|
|||||||
@ -31,14 +31,5 @@
|
|||||||
"username": null,
|
"username": null,
|
||||||
"password": null
|
"password": null
|
||||||
},
|
},
|
||||||
"notes": [
|
"notes": []
|
||||||
{
|
|
||||||
"type": "warning",
|
|
||||||
"content": "Configure your Radarr/Sonarr instances in `/root/.config/recyclarr/recyclarr.yml` before the first sync."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "info",
|
|
||||||
"content": "Automatic daily sync is configured via `/etc/cron.d/recyclarr`. Sync logs are saved to `/root/.config/recyclarr/sync.log`."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,99 +1,4 @@
|
|||||||
[
|
[
|
||||||
{
|
|
||||||
"name": "passbolt/passbolt_api",
|
|
||||||
"version": "v5.8.0",
|
|
||||||
"date": "2025-12-22T10:12:48Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "itsmng/itsm-ng",
|
|
||||||
"version": "v1.6.11",
|
|
||||||
"date": "2025-12-22T09:14:20Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "morpheus65535/bazarr",
|
|
||||||
"version": "v1.5.3",
|
|
||||||
"date": "2025-09-20T12:12:33Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "open-webui/open-webui",
|
|
||||||
"version": "v0.6.43",
|
|
||||||
"date": "2025-12-22T06:03:45Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Jackett/Jackett",
|
|
||||||
"version": "v0.24.504",
|
|
||||||
"date": "2025-12-22T05:55:56Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "firefly-iii/firefly-iii",
|
|
||||||
"version": "v6.4.14",
|
|
||||||
"date": "2025-12-16T05:42:34Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fosrl/pangolin",
|
|
||||||
"version": "1.14.0-rc.0",
|
|
||||||
"date": "2025-12-22T02:49:19Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "pommee/goaway",
|
|
||||||
"version": "v0.63.0",
|
|
||||||
"date": "2025-12-22T02:24:44Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "jeedom/core",
|
|
||||||
"version": "4.5.1",
|
|
||||||
"date": "2025-12-22T00:27:05Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "steveiliop56/tinyauth",
|
|
||||||
"version": "v4.1.0",
|
|
||||||
"date": "2025-11-23T12:13:34Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "advplyr/audiobookshelf",
|
|
||||||
"version": "v2.32.0",
|
|
||||||
"date": "2025-12-21T22:27:29Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "keycloak/keycloak",
|
|
||||||
"version": "26.4.7",
|
|
||||||
"date": "2025-12-01T08:14:11Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "project-zot/zot",
|
|
||||||
"version": "v2.1.12",
|
|
||||||
"date": "2025-12-21T20:45:14Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "openhab/openhab-core",
|
|
||||||
"version": "5.1.0.RC3",
|
|
||||||
"date": "2025-12-21T20:04:16Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "maxdorninger/MediaManager",
|
|
||||||
"version": "v1.11.0",
|
|
||||||
"date": "2025-12-21T19:58:49Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "scanopy/scanopy",
|
|
||||||
"version": "v0.12.5",
|
|
||||||
"date": "2025-12-21T19:24:42Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "benjaminjonard/koillection",
|
|
||||||
"version": "1.7.1",
|
|
||||||
"date": "2025-12-21T17:06:17Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "ventoy/Ventoy",
|
|
||||||
"version": "v1.1.10",
|
|
||||||
"date": "2025-12-21T13:13:01Z"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "jason5ng32/MyIP",
|
|
||||||
"version": "v5.1.1",
|
|
||||||
"date": "2025-12-21T12:59:32Z"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "msgbyte/tianji",
|
"name": "msgbyte/tianji",
|
||||||
"version": "v1.30.24",
|
"version": "v1.30.24",
|
||||||
@ -109,6 +14,21 @@
|
|||||||
"version": "v0.35.0",
|
"version": "v0.35.0",
|
||||||
"date": "2025-12-21T07:44:15Z"
|
"date": "2025-12-21T07:44:15Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "morpheus65535/bazarr",
|
||||||
|
"version": "v1.5.3",
|
||||||
|
"date": "2025-09-20T12:12:33Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Jackett/Jackett",
|
||||||
|
"version": "v0.24.498",
|
||||||
|
"date": "2025-12-21T05:55:52Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "scanopy/scanopy",
|
||||||
|
"version": "v0.12.5",
|
||||||
|
"date": "2025-12-21T05:36:12Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "fuma-nama/fumadocs",
|
"name": "fuma-nama/fumadocs",
|
||||||
"version": "fumadocs-ui@16.3.2",
|
"version": "fumadocs-ui@16.3.2",
|
||||||
@ -124,6 +44,16 @@
|
|||||||
"version": "v0.8.2",
|
"version": "v0.8.2",
|
||||||
"date": "2025-12-21T03:53:53Z"
|
"date": "2025-12-21T03:53:53Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "steveiliop56/tinyauth",
|
||||||
|
"version": "v4.1.0",
|
||||||
|
"date": "2025-11-23T12:13:34Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "jeedom/core",
|
||||||
|
"version": "4.5.1",
|
||||||
|
"date": "2025-12-21T00:27:04Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Luligu/matterbridge",
|
"name": "Luligu/matterbridge",
|
||||||
"version": "3.4.4",
|
"version": "3.4.4",
|
||||||
@ -134,6 +64,11 @@
|
|||||||
"version": "v1.2.0-experimental-sql-indexing-v3",
|
"version": "v1.2.0-experimental-sql-indexing-v3",
|
||||||
"date": "2025-12-20T21:57:53Z"
|
"date": "2025-12-20T21:57:53Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "openhab/openhab-core",
|
||||||
|
"version": "5.1.0.RC2",
|
||||||
|
"date": "2025-12-20T20:17:29Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "CyferShepard/Jellystat",
|
"name": "CyferShepard/Jellystat",
|
||||||
"version": "1.1.7",
|
"version": "1.1.7",
|
||||||
@ -159,6 +94,16 @@
|
|||||||
"version": "v11.9.1",
|
"version": "v11.9.1",
|
||||||
"date": "2025-12-20T09:14:25Z"
|
"date": "2025-12-20T09:14:25Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "pommee/goaway",
|
||||||
|
"version": "v0.62.25",
|
||||||
|
"date": "2025-12-20T09:11:49Z"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "firefly-iii/firefly-iii",
|
||||||
|
"version": "v6.4.14",
|
||||||
|
"date": "2025-12-16T05:42:34Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "louislam/uptime-kuma",
|
"name": "louislam/uptime-kuma",
|
||||||
"version": "2.0.2",
|
"version": "2.0.2",
|
||||||
@ -214,6 +159,11 @@
|
|||||||
"version": "debian/12.1.37",
|
"version": "debian/12.1.37",
|
||||||
"date": "2025-12-18T16:43:23Z"
|
"date": "2025-12-18T16:43:23Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "keycloak/keycloak",
|
||||||
|
"version": "26.4.7",
|
||||||
|
"date": "2025-12-01T08:14:11Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "home-assistant/core",
|
"name": "home-assistant/core",
|
||||||
"version": "2025.12.4",
|
"version": "2025.12.4",
|
||||||
@ -234,6 +184,11 @@
|
|||||||
"version": "v2.4.1",
|
"version": "v2.4.1",
|
||||||
"date": "2025-12-19T15:50:12Z"
|
"date": "2025-12-19T15:50:12Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "itsmng/itsm-ng",
|
||||||
|
"version": "v1.6.11",
|
||||||
|
"date": "2025-12-19T15:28:57Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "openobserve/openobserve",
|
"name": "openobserve/openobserve",
|
||||||
"version": "v0.30.2",
|
"version": "v0.30.2",
|
||||||
@ -431,8 +386,8 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "bunkerity/bunkerweb",
|
"name": "bunkerity/bunkerweb",
|
||||||
"version": "v1.6.6",
|
"version": "testing",
|
||||||
"date": "2025-11-24T15:30:21Z"
|
"date": "2025-12-16T11:13:20Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "traefik/traefik",
|
"name": "traefik/traefik",
|
||||||
@ -449,6 +404,11 @@
|
|||||||
"version": "v0.105.1",
|
"version": "v0.105.1",
|
||||||
"date": "2025-12-17T08:48:52Z"
|
"date": "2025-12-17T08:48:52Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "passbolt/passbolt_api",
|
||||||
|
"version": "v5.8.0-test.3",
|
||||||
|
"date": "2025-12-17T08:38:11Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "jupyter/notebook",
|
"name": "jupyter/notebook",
|
||||||
"version": "@jupyter-notebook/ui-components@7.6.0-alpha.0",
|
"version": "@jupyter-notebook/ui-components@7.6.0-alpha.0",
|
||||||
@ -629,6 +589,11 @@
|
|||||||
"version": "v4.4.0",
|
"version": "v4.4.0",
|
||||||
"date": "2025-12-13T22:49:07Z"
|
"date": "2025-12-13T22:49:07Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "fosrl/pangolin",
|
||||||
|
"version": "1.13.1",
|
||||||
|
"date": "2025-12-13T18:00:27Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "leiweibau/Pi.Alert",
|
"name": "leiweibau/Pi.Alert",
|
||||||
"version": "v2025-12-14",
|
"version": "v2025-12-14",
|
||||||
@ -669,6 +634,11 @@
|
|||||||
"version": "4.1.2",
|
"version": "4.1.2",
|
||||||
"date": "2025-12-03T16:12:05Z"
|
"date": "2025-12-03T16:12:05Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "ventoy/Ventoy",
|
||||||
|
"version": "v1.1.09",
|
||||||
|
"date": "2025-12-12T13:06:36Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "duplicati/duplicati",
|
"name": "duplicati/duplicati",
|
||||||
"version": "v2.2.0.102-2.2.0.102_canary_2025-12-12",
|
"version": "v2.2.0.102-2.2.0.102_canary_2025-12-12",
|
||||||
@ -794,6 +764,11 @@
|
|||||||
"version": "2.2.1",
|
"version": "2.2.1",
|
||||||
"date": "2025-12-08T12:01:34Z"
|
"date": "2025-12-08T12:01:34Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "maxdorninger/MediaManager",
|
||||||
|
"version": "v1.10.0",
|
||||||
|
"date": "2025-12-07T23:41:51Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Part-DB/Part-DB-server",
|
"name": "Part-DB/Part-DB-server",
|
||||||
"version": "v2.3.0",
|
"version": "v2.3.0",
|
||||||
@ -904,6 +879,11 @@
|
|||||||
"version": "10.1.50",
|
"version": "10.1.50",
|
||||||
"date": "2025-12-02T22:59:59Z"
|
"date": "2025-12-02T22:59:59Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "open-webui/open-webui",
|
||||||
|
"version": "v0.6.41",
|
||||||
|
"date": "2025-12-02T22:28:58Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "WordPress/WordPress",
|
"name": "WordPress/WordPress",
|
||||||
"version": "6.9",
|
"version": "6.9",
|
||||||
@ -919,6 +899,11 @@
|
|||||||
"version": "v2.0.12",
|
"version": "v2.0.12",
|
||||||
"date": "2025-12-02T08:11:24Z"
|
"date": "2025-12-02T08:11:24Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "advplyr/audiobookshelf",
|
||||||
|
"version": "v2.31.0",
|
||||||
|
"date": "2025-12-01T23:49:11Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "OliveTin/OliveTin",
|
"name": "OliveTin/OliveTin",
|
||||||
"version": "3000.7.0",
|
"version": "3000.7.0",
|
||||||
@ -1069,6 +1054,11 @@
|
|||||||
"version": "v4.3.2",
|
"version": "v4.3.2",
|
||||||
"date": "2025-10-18T12:11:00Z"
|
"date": "2025-10-18T12:11:00Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "project-zot/zot",
|
||||||
|
"version": "v2.1.11",
|
||||||
|
"date": "2025-11-20T20:14:44Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "kimai/kimai",
|
"name": "kimai/kimai",
|
||||||
"version": "2.44.0",
|
"version": "2.44.0",
|
||||||
@ -1164,6 +1154,11 @@
|
|||||||
"version": "v1.0.25",
|
"version": "v1.0.25",
|
||||||
"date": "2025-11-12T16:57:54Z"
|
"date": "2025-11-12T16:57:54Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "jason5ng32/MyIP",
|
||||||
|
"version": "v5.1.0",
|
||||||
|
"date": "2025-11-12T10:44:24Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "CrazyWolf13/web-check",
|
"name": "CrazyWolf13/web-check",
|
||||||
"version": "1.1.0",
|
"version": "1.1.0",
|
||||||
@ -1449,6 +1444,11 @@
|
|||||||
"version": "v2.1.0",
|
"version": "v2.1.0",
|
||||||
"date": "2025-08-29T12:56:13Z"
|
"date": "2025-08-29T12:56:13Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "benjaminjonard/koillection",
|
||||||
|
"version": "1.7.0",
|
||||||
|
"date": "2025-08-28T18:10:59Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "plexguide/Huntarr.io",
|
"name": "plexguide/Huntarr.io",
|
||||||
"version": "8.2.10",
|
"version": "8.2.10",
|
||||||
|
|||||||
@ -21,18 +21,6 @@ cd /opt/jotty
|
|||||||
$STD yarn --frozen-lockfile
|
$STD yarn --frozen-lockfile
|
||||||
$STD yarn next telemetry disable
|
$STD yarn next telemetry disable
|
||||||
$STD yarn build
|
$STD yarn build
|
||||||
|
|
||||||
[ -d "public" ] && cp -r public .next/standalone/
|
|
||||||
[ -d "howto" ] && cp -r howto .next/standalone/
|
|
||||||
mkdir -p .next/standalone/.next
|
|
||||||
cp -r .next/static .next/standalone/.next/
|
|
||||||
|
|
||||||
mv .next/standalone /tmp/jotty_standalone
|
|
||||||
rm -rf * .next .git .gitignore .yarn
|
|
||||||
mv /tmp/jotty_standalone/* .
|
|
||||||
mv /tmp/jotty_standalone/.[!.]* . 2>/dev/null || true
|
|
||||||
rm -rf /tmp/jotty_standalone
|
|
||||||
|
|
||||||
mkdir -p data/{users,checklists,notes}
|
mkdir -p data/{users,checklists,notes}
|
||||||
|
|
||||||
cat <<EOF >/opt/jotty/.env
|
cat <<EOF >/opt/jotty/.env
|
||||||
@ -67,7 +55,7 @@ After=network.target
|
|||||||
[Service]
|
[Service]
|
||||||
WorkingDirectory=/opt/jotty
|
WorkingDirectory=/opt/jotty
|
||||||
EnvironmentFile=/opt/jotty/.env
|
EnvironmentFile=/opt/jotty/.env
|
||||||
ExecStart=/usr/bin/node server.js
|
ExecStart=yarn start
|
||||||
Restart=on-abnormal
|
Restart=on-abnormal
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
|
|||||||
@ -24,14 +24,6 @@ mkdir -p /root/.config/recyclarr
|
|||||||
$STD recyclarr config create
|
$STD recyclarr config create
|
||||||
msg_ok "Configured Recyclarr"
|
msg_ok "Configured Recyclarr"
|
||||||
|
|
||||||
msg_info "Setting up Daily Sync Cron"
|
|
||||||
cat <<EOF >/etc/cron.d/recyclarr
|
|
||||||
# Run recyclarr sync daily
|
|
||||||
@daily root recyclarr sync >> /root/.config/recyclarr/sync.log 2>&1
|
|
||||||
EOF
|
|
||||||
chmod 644 /etc/cron.d/recyclarr
|
|
||||||
msg_ok "Setup Daily Sync Cron"
|
|
||||||
|
|
||||||
motd_ssh
|
motd_ssh
|
||||||
customize
|
customize
|
||||||
cleanup_lxc
|
cleanup_lxc
|
||||||
|
|||||||
@ -17,6 +17,7 @@ msg_info "Installing Dependencies"
|
|||||||
$STD apt install -y apt-transport-https
|
$STD apt install -y apt-transport-https
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
|
JAVA_VERION="17" setup_java
|
||||||
setup_deb822_repo \
|
setup_deb822_repo \
|
||||||
"unifi" \
|
"unifi" \
|
||||||
"https://dl.ui.com/unifi/unifi-repo.gpg" \
|
"https://dl.ui.com/unifi/unifi-repo.gpg" \
|
||||||
@ -25,22 +26,17 @@ setup_deb822_repo \
|
|||||||
"ubiquiti" \
|
"ubiquiti" \
|
||||||
"amd64"
|
"amd64"
|
||||||
|
|
||||||
JAVA_VERSION="21" setup_java
|
if ! grep -q -m1 'avx[^ ]*' /proc/cpuinfo; then
|
||||||
|
msg_warn "No AVX Support Detected. MongoDB v4.4 will be installed"
|
||||||
if lscpu | grep -q 'avx'; then
|
if ! dpkg -l | grep -q "libssl1.1"; then
|
||||||
MONGO_VERSION="8.0" setup_mongodb
|
curl -fsSL "https://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1w-0+deb11u4_amd64.deb" -o "libssl1.1_1.1.1w-0+deb11u4_amd64.deb"
|
||||||
|
$STD dpkg -i libssl1.1_1.1.1w-0+deb11u4_amd64.deb
|
||||||
|
fi
|
||||||
|
MONGO_VERSION="4.4" setup_mongodb
|
||||||
else
|
else
|
||||||
msg_error "No AVX detected (CPU-Flag)! We have discontinued support for this. You are welcome to try it manually with a Debian LXC, but due to the many issues with Unifi, we currently only support AVX CPUs."
|
MONGO_VERSION="7.0" setup_mongodb
|
||||||
exit 10
|
|
||||||
fi
|
|
||||||
|
|
||||||
if ! dpkg -l | grep -q 'libssl1.1'; then
|
|
||||||
msg_info "Installing libssl (if needed)"
|
|
||||||
curl -fsSL "https://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1w-0+deb11u4_amd64.deb" -o "/tmp/libssl.deb"
|
|
||||||
$STD dpkg -i /tmp/libssl.deb
|
|
||||||
rm -f /tmp/libssl.deb
|
|
||||||
msg_ok "Installed libssl1.1"
|
|
||||||
fi
|
fi
|
||||||
|
msg_ok "Installed MongoDB"
|
||||||
|
|
||||||
msg_info "Installing UniFi Network Server"
|
msg_info "Installing UniFi Network Server"
|
||||||
$STD apt install -y unifi
|
$STD apt install -y unifi
|
||||||
|
|||||||
Reference in New Issue
Block a user