forked from forkanization/Proxmox-arm64
port Spoolman, PeaNUT to ARM64
This commit is contained in:
@@ -141,6 +141,7 @@ If you would like to offer support, I would appreciate a star on the repository,
|
||||
| PairDrop | ☑️ | |
|
||||
| Paperless-ngx | ☑️ | |
|
||||
| PBS | ☑️ | Proxmox Backup Server |
|
||||
| PeaNUT | ⭕ | |
|
||||
| Petio | ☑️ | Only supports ARMv8.2-a currently. (no RPI4 support). |
|
||||
| PhotoPrism | ☑️ | |
|
||||
| Pi.Alert | ☑️ | |
|
||||
@@ -167,6 +168,7 @@ If you would like to offer support, I would appreciate a star on the repository,
|
||||
| Shinobi NVR | ☑️ | |
|
||||
| SmokePing | ☑️ | |
|
||||
| Sonarr | ☑️ | |
|
||||
| SpoolMan | ⭕ | |
|
||||
| Stirling-PDF | ☑️ | |
|
||||
| Syncthing | ☑️ | |
|
||||
| Tandoor Recipes | ☑️ | |
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func)
|
||||
# Copyright (c) 2021-2024 tteck
|
||||
# Author: MickLesk (Canbiz)
|
||||
# Author: tteck (tteckster)
|
||||
# License: MIT
|
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func)
|
||||
# Copyright (c) 2021-2024 tteck
|
||||
# Author: MickLesk (Canbiz)
|
||||
# Author: tteck (tteckster)
|
||||
# License: MIT
|
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
source <(curl -s https://raw.githubusercontent.com/remz1337/Proxmox/remz/misc/build.func)
|
||||
source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func)
|
||||
# Copyright (c) 2021-2024 tteck
|
||||
# Author: tteck (tteckster)
|
||||
# Co-Author: remz1337
|
||||
# License: MIT
|
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func)
|
||||
source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func)
|
||||
# Copyright (c) 2021-2024 tteck
|
||||
# Author: tteck
|
||||
# Co-Author: MickLesk (Canbiz)
|
||||
# Author: tteck (tteckster)
|
||||
# License: MIT
|
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2024 tteck
|
||||
# Author: tteck
|
||||
# Co-Author: MickLesk (Canbiz)
|
||||
# Author: tteck (tteckster)
|
||||
# License: MIT
|
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||
# Source: https://github.com/Luligu/matterbridge/
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2024 tteck
|
||||
# Author: tteck
|
||||
# Co-Author: MickLesk (Canbiz)
|
||||
# Author: tteck (tteckster)
|
||||
# License: MIT
|
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||
# Source: https://github.com/alexta69/metube
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
|
||||
# Copyright (c) 2021-2024 tteck
|
||||
# Author: tteck (tteckster)
|
||||
# Co-Author: remz1337
|
||||
# License: MIT
|
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||
|
||||
@@ -19,6 +18,7 @@ $STD apt-get install -y curl
|
||||
$STD apt-get install -y sudo
|
||||
$STD apt-get install -y mc
|
||||
$STD apt-get install -y gpg
|
||||
$STD apt-get install -y wget
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
msg_info "Installing Node.js"
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2024 tteck
|
||||
# Author: tteck
|
||||
# Co-Author: MickLesk (Canbiz)
|
||||
# Author: tteck (tteckster)
|
||||
# License: MIT
|
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||
# Source: https://github.com/Donkie/Spoolman
|
||||
@@ -24,7 +23,8 @@ $STD apt-get install -y \
|
||||
libpq-dev \
|
||||
gpg \
|
||||
ca-certificates \
|
||||
mc
|
||||
mc \
|
||||
wget
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
msg_info "Installing Python3"
|
||||
@@ -33,16 +33,16 @@ $STD apt-get install -y \
|
||||
python3-setuptools \
|
||||
python3-wheel \
|
||||
python3-pip
|
||||
rm -rf /usr/lib/python3.*/EXTERNALLY-MANAGED
|
||||
msg_ok "Installed Python3"
|
||||
|
||||
msg_info "Installing Spoolman"
|
||||
cd /opt
|
||||
RELEASE=$(wget -q https://github.com/Donkie/Spoolman/releases/latest -O - | grep "title>Release" | cut -d " " -f 4)
|
||||
cd /opt
|
||||
wget -q https://github.com/Donkie/Spoolman/releases/download/$RELEASE/spoolman.zip
|
||||
unzip -q spoolman.zip -d spoolman
|
||||
rm -rf spoolman.zip
|
||||
cd spoolman
|
||||
cd /opt/spoolman
|
||||
$STD pip3 install -r requirements.txt
|
||||
cp .env.example .env
|
||||
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
|
||||
|
||||
@@ -399,6 +399,10 @@
|
||||
"status": "created",
|
||||
"notes": ""
|
||||
},
|
||||
"PeaNUT LXC": {
|
||||
"status": "untested",
|
||||
"notes": ""
|
||||
},
|
||||
"Petio LXC": {
|
||||
"status": "created",
|
||||
"notes": "Only supports ARMv8.2-a currently. (no RPI4 support)."
|
||||
@@ -503,6 +507,10 @@
|
||||
"status": "created",
|
||||
"notes": ""
|
||||
},
|
||||
"Spoolman LXC": {
|
||||
"status": "untested",
|
||||
"notes": ""
|
||||
},
|
||||
"Stirling-PDF LXC": {
|
||||
"status": "created",
|
||||
"notes": ""
|
||||
|
||||
Reference in New Issue
Block a user