mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-02-04 06:50:15 +00:00
Compare commits
24 Commits
ef94c25a27
...
9302e4bad6
Author | SHA1 | Date | |
---|---|---|---|
|
9302e4bad6 | ||
|
c42438be11 | ||
|
dfc006271c | ||
|
e64ecb9773 | ||
|
85109ecf11 | ||
|
fb67025f3b | ||
|
f545c8ae5b | ||
|
70d75bf53e | ||
|
783e9b160d | ||
|
bdb2816e87 | ||
|
d9a4586eec | ||
|
3904fb1981 | ||
|
b8ed5e3987 | ||
|
723b8e8e0b | ||
|
e0d0bcd409 | ||
|
69f19ca652 | ||
|
76742e7910 | ||
|
17d06a51ae | ||
|
e8cd6497ef | ||
|
08131f881c | ||
|
b789d982d9 | ||
|
41d45eb4ec | ||
|
665014379e | ||
|
5a2a5b3885 |
@ -23,19 +23,24 @@ Do not break established syntax in this file, as it is automatically updated by
|
||||
|
||||
### ✨ New Scripts
|
||||
|
||||
- New Script: UrBackup Server [@kris701](https://github.com/kris701) ([#1569](https://github.com/community-scripts/ProxmoxVE/pull/1569))
|
||||
- New Script: Proxmox Mail Gateway Post Installer [@thost96](https://github.com/thost96) ([#1559](https://github.com/community-scripts/ProxmoxVE/pull/1559))
|
||||
|
||||
### 🚀 Updated Scripts
|
||||
|
||||
- Feature: Add xCaddy for external Modules on Caddy-LXC [@MickLesk](https://github.com/MickLesk) ([#1613](https://github.com/community-scripts/ProxmoxVE/pull/1613))
|
||||
- Update Kimai Dependency: Use PHP 8.4 [@MickLesk](https://github.com/MickLesk) ([#1609](https://github.com/community-scripts/ProxmoxVE/pull/1609))
|
||||
- Fix Pocketbase URL after install [@MickLesk](https://github.com/MickLesk) ([#1597](https://github.com/community-scripts/ProxmoxVE/pull/1597))
|
||||
- Unifi.sh fix wrong URL after Install [@thost96](https://github.com/thost96) ([#1601](https://github.com/community-scripts/ProxmoxVE/pull/1601))
|
||||
|
||||
### 🌐 Website
|
||||
|
||||
- Update Website | Add new Categories [@MickLesk](https://github.com/MickLesk) ([#1606](https://github.com/community-scripts/ProxmoxVE/pull/1606))
|
||||
- Grafana: Mark container as updateable [@andygrunwald](https://github.com/andygrunwald) ([#1603](https://github.com/community-scripts/ProxmoxVE/pull/1603))
|
||||
|
||||
### 🧰 Maintenance
|
||||
|
||||
- Update build.func: Fix Advanced Tags (Remove all if empty / overwrite if default cleared) [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1612](https://github.com/community-scripts/ProxmoxVE/pull/1612))
|
||||
- Add new Check for LXC MaxKeys by @cricalix [@MickLesk](https://github.com/MickLesk) ([#1602](https://github.com/community-scripts/ProxmoxVE/pull/1602))
|
||||
|
||||
## 2025-01-19
|
||||
|
@ -10,7 +10,7 @@ APP="Caddy"
|
||||
var_tags="webserver"
|
||||
var_cpu="1"
|
||||
var_ram="512"
|
||||
var_disk="2"
|
||||
var_disk="4"
|
||||
var_os="debian"
|
||||
var_version="12"
|
||||
var_unprivileged="1"
|
||||
@ -46,4 +46,4 @@ description
|
||||
msg_ok "Completed Successfully!\n"
|
||||
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
||||
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
||||
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:80${CL}"
|
||||
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:80${CL}"
|
||||
|
49
ct/urbackupserver.sh
Normal file
49
ct/urbackupserver.sh
Normal file
@ -0,0 +1,49 @@
|
||||
#!/usr/bin/env bash
|
||||
source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/refs/heads/main/misc/build.func)
|
||||
# Copyright (c) 2021-2025 community-scripts ORG
|
||||
# Author: Kristian Skov
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
# Source: https://www.urbackup.org/
|
||||
|
||||
# App Default Values
|
||||
APP="UrBackup Server"
|
||||
var_tags="web"
|
||||
var_cpu="1"
|
||||
var_ram="1024"
|
||||
var_disk="16"
|
||||
var_os="debian"
|
||||
var_version="12"
|
||||
var_unprivileged="0"
|
||||
|
||||
# App Output & Base Settings
|
||||
header_info "$APP"
|
||||
base_settings
|
||||
|
||||
# Core
|
||||
variables
|
||||
color
|
||||
catch_errors
|
||||
|
||||
function update_script() {
|
||||
header_info
|
||||
check_container_storage
|
||||
check_container_resources
|
||||
if [[ ! -d /var/urbackup ]]; then
|
||||
msg_error "No ${APP} Installation Found!"
|
||||
exit
|
||||
fi
|
||||
msg_info "Updating ${APP} LXC"
|
||||
apt-get update &>/dev/null
|
||||
apt-get -y upgrade &>/dev/null
|
||||
msg_ok "Updated Successfully"
|
||||
exit
|
||||
}
|
||||
|
||||
start
|
||||
build_container
|
||||
description
|
||||
|
||||
msg_ok "Completed Successfully!\n"
|
||||
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
||||
echo -e "${INFO}${YW} Access it using the following IP:${CL}"
|
||||
echo -e "${TAB}${GATEWAY}${BGN}${IP}:55414${CL}"
|
@ -1,9 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2025 tteck
|
||||
# Author: tteck (tteckster)
|
||||
# License: MIT
|
||||
# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
# Author: tteck (tteckster) | Co-Author: MickLesk (CanbiZ)
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
|
||||
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
|
||||
color
|
||||
@ -14,7 +13,14 @@ network_check
|
||||
update_os
|
||||
|
||||
msg_info "Installing Dependencies"
|
||||
$STD apt-get install -y {debian-keyring,debian-archive-keyring,apt-transport-https,gpg,curl,sudo,mc}
|
||||
$STD apt-get install -y \
|
||||
debian-keyring \
|
||||
debian-archive-keyring \
|
||||
apt-transport-https \
|
||||
gpg \
|
||||
curl \
|
||||
sudo \
|
||||
mc
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
msg_info "Installing Caddy"
|
||||
@ -24,6 +30,29 @@ $STD apt-get update
|
||||
$STD apt-get install -y caddy
|
||||
msg_ok "Installed Caddy"
|
||||
|
||||
read -r -p "Would you like to install xCaddy Addon? <y/N> " prompt
|
||||
if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
|
||||
msg_info "Installing Golang"
|
||||
cd /opt
|
||||
set +o pipefail
|
||||
GOLANG=$(curl -s https://go.dev/dl/ | grep -o "go.*\linux-amd64.tar.gz" | head -n 1)
|
||||
wget -q https://golang.org/dl/$GOLANG
|
||||
tar -xzf $GOLANG -C /usr/local
|
||||
ln -s /usr/local/go/bin/go /usr/local/bin/go
|
||||
set -o pipefail
|
||||
rm -rf /opt/go*
|
||||
msg_ok "Installed Golang"
|
||||
|
||||
msg_info "Setup xCaddy"
|
||||
cd /opt
|
||||
RELEASE=$(curl -s https://api.github.com/repos/caddyserver/xcaddy/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
|
||||
wget -q https://github.com/caddyserver/xcaddy/releases/download/${RELEASE}/xcaddy_${RELEASE:1}_linux_amd64.deb
|
||||
$STD dpkg -i xcaddy_${RELEASE:1}_linux_amd64.deb
|
||||
rm -rf /opt/xcaddy*
|
||||
$STD xcaddy build
|
||||
msg_ok "Setup xCaddy"
|
||||
fi
|
||||
|
||||
motd_ssh
|
||||
customize
|
||||
|
||||
|
@ -24,10 +24,25 @@ $STD apt-get install -y \
|
||||
expect \
|
||||
composer \
|
||||
mariadb-server \
|
||||
libapache2-mod-php \
|
||||
php8.2-{mbstring,gd,intl,pdo,mysql,tokenizer,zip,xml}
|
||||
lsb-release
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
msg_info "Setup PHP8.4 Repository"
|
||||
$STD curl -sSLo /tmp/debsuryorg-archive-keyring.deb https://packages.sury.org/debsuryorg-archive-keyring.deb
|
||||
$STD dpkg -i /tmp/debsuryorg-archive-keyring.deb
|
||||
$STD sh -c 'echo "deb [signed-by=/usr/share/keyrings/deb.sury.org-php.gpg] https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list'
|
||||
$STD apt-get update
|
||||
msg_ok "Setup PHP8.4 Repository"
|
||||
|
||||
msg_info "Setup PHP"
|
||||
$STD apt-get remove -y php8.2*
|
||||
#$STD apt-get remove -y php8.3*
|
||||
$STD apt-get install -y \
|
||||
php8.3 \
|
||||
php8.3-{mbstring,gd,intl,common,mysql,zip,xml} \
|
||||
libapache2-mod-php8.3
|
||||
msg_info "Setup PHP"
|
||||
|
||||
msg_info "Setting up database"
|
||||
DB_NAME=kimai_db
|
||||
DB_USER=kimai
|
||||
@ -72,6 +87,7 @@ send "helper-scripts.com\r"
|
||||
|
||||
expect eof
|
||||
EOF
|
||||
$STD composer update --no-interaction
|
||||
echo "${RELEASE}" >"/opt/${APPLICATION}_version.txt"
|
||||
msg_ok "Installed Kimai"
|
||||
|
||||
|
37
install/urbackupserver-install.sh
Normal file
37
install/urbackupserver-install.sh
Normal file
@ -0,0 +1,37 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2025 community-scripts ORG
|
||||
# Author: Kristian Skov
|
||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||
|
||||
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
|
||||
color
|
||||
verb_ip6
|
||||
catch_errors
|
||||
setting_up_container
|
||||
network_check
|
||||
update_os
|
||||
|
||||
msg_info "Installing Dependencies"
|
||||
$STD apt-get install -y \
|
||||
curl \
|
||||
sudo \
|
||||
mc \
|
||||
gnupg \
|
||||
coreutils
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
msg_info "Installing UrBackup Server"
|
||||
curl -fsSL https://download.opensuse.org/repositories/home:uroni/Debian_12/Release.key | gpg --dearmor >/etc/apt/trusted.gpg.d/home_uroni.gpg
|
||||
echo 'deb [signed-by=/etc/apt/trusted.gpg.d/home_uroni.gpg] http://download.opensuse.org/repositories/home:/uroni/Debian_12/ /' >/etc/apt/sources.list.d/home:uroni.list
|
||||
$STD apt-get update -y
|
||||
apt-get install -y -qq urbackup-server
|
||||
msg_ok "Installed UrBackup Server"
|
||||
|
||||
motd_ssh
|
||||
customize
|
||||
|
||||
msg_info "Cleaning up"
|
||||
$STD apt-get -y autoremove
|
||||
$STD apt-get -y autoclean
|
||||
msg_ok "Cleaned"
|
@ -2,7 +2,7 @@
|
||||
"name": "Apache Guacamole",
|
||||
"slug": "apache-guacamole",
|
||||
"categories": [
|
||||
21
|
||||
0
|
||||
],
|
||||
"date_created": "2024-12-19",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Audiobookshelf",
|
||||
"slug": "audiobookshelf",
|
||||
"categories": [
|
||||
13
|
||||
12
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Autobrr",
|
||||
"slug": "autobrr",
|
||||
"categories": [
|
||||
19
|
||||
14
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "BunkerWeb",
|
||||
"slug": "bunkerweb",
|
||||
"categories": [
|
||||
25
|
||||
6
|
||||
],
|
||||
"date_created": "2024-06-12",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Caddy",
|
||||
"slug": "caddy",
|
||||
"categories": [
|
||||
25
|
||||
21
|
||||
],
|
||||
"date_created": "2024-05-11",
|
||||
"type": "ct",
|
||||
@ -20,7 +20,7 @@
|
||||
"resources": {
|
||||
"cpu": 1,
|
||||
"ram": 512,
|
||||
"hdd": 2,
|
||||
"hdd": 4,
|
||||
"os": "debian",
|
||||
"version": "12"
|
||||
}
|
||||
@ -30,5 +30,14 @@
|
||||
"username": null,
|
||||
"password": null
|
||||
},
|
||||
"notes": []
|
||||
}
|
||||
"notes": [
|
||||
{
|
||||
"text": "if you need an internal module run: `caddy add-package PACKAGENAME`",
|
||||
"type": "info"
|
||||
},
|
||||
{
|
||||
"text": "if you need an external module run: `xcaddy build --with github.com/caddy-dns/cloudflare`",
|
||||
"type": "info"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Calibre-Web",
|
||||
"slug": "calibre-web",
|
||||
"categories": [
|
||||
12
|
||||
11
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Change Detection",
|
||||
"slug": "changedetection",
|
||||
"categories": [
|
||||
9
|
||||
24
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Channels DVR Server",
|
||||
"slug": "channels",
|
||||
"categories": [
|
||||
13
|
||||
15
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "VS Code Server",
|
||||
"slug": "code-server",
|
||||
"categories": [
|
||||
20
|
||||
1
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "misc",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "CommaFeed",
|
||||
"slug": "commafeed",
|
||||
"categories": [
|
||||
10
|
||||
19
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "File Browser",
|
||||
"slug": "filebrowser",
|
||||
"categories": [
|
||||
11
|
||||
1
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "misc",
|
||||
@ -36,4 +36,4 @@
|
||||
"type": "warning"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
@ -2,7 +2,7 @@
|
||||
"name": "FlareSolverr",
|
||||
"slug": "flaresolverr",
|
||||
"categories": [
|
||||
4
|
||||
14
|
||||
],
|
||||
"date_created": "2024-06-12",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "GLPI",
|
||||
"slug": "glpi",
|
||||
"categories": [
|
||||
28
|
||||
0
|
||||
],
|
||||
"date_created": "2025-01-06",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "go2rtc",
|
||||
"slug": "go2rtc",
|
||||
"categories": [
|
||||
16
|
||||
15
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Gotify",
|
||||
"slug": "gotify",
|
||||
"categories": [
|
||||
18
|
||||
19
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "grocy",
|
||||
"slug": "grocy",
|
||||
"categories": [
|
||||
16
|
||||
24
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Home Assistant OS",
|
||||
"slug": "haos-vm",
|
||||
"categories": [
|
||||
2
|
||||
16
|
||||
],
|
||||
"date_created": "2024-04-29",
|
||||
"type": "vm",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "HomeBox",
|
||||
"slug": "homebox",
|
||||
"categories": [
|
||||
25
|
||||
24
|
||||
],
|
||||
"date_created": "2024-09-16",
|
||||
"type": "ct",
|
||||
|
@ -2,6 +2,7 @@
|
||||
"name": "Homer",
|
||||
"slug": "homer",
|
||||
"categories": [
|
||||
10
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Proxmox VE Host Backup",
|
||||
"slug": "host-backup",
|
||||
"categories": [
|
||||
7
|
||||
1
|
||||
],
|
||||
"date_created": "2024-04-29",
|
||||
"type": "misc",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "InspIRCd 4",
|
||||
"slug": "inspircd",
|
||||
"categories": [
|
||||
18
|
||||
24
|
||||
],
|
||||
"date_created": "2024-11-29",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Jackett",
|
||||
"slug": "jackett",
|
||||
"categories": [
|
||||
14
|
||||
11
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Jenkins",
|
||||
"slug": "jenkins",
|
||||
"categories": [
|
||||
19
|
||||
22
|
||||
],
|
||||
"date_created": "2024-12-26",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Kimai",
|
||||
"slug": "kimai",
|
||||
"categories": [
|
||||
28
|
||||
25
|
||||
],
|
||||
"date_created": "2024-11-20",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Komodo",
|
||||
"slug": "komodo",
|
||||
"categories": [
|
||||
20
|
||||
3
|
||||
],
|
||||
"date_created": "2025-01-01",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Kubo",
|
||||
"slug": "kubo",
|
||||
"categories": [
|
||||
11
|
||||
4
|
||||
],
|
||||
"date_created": "2024-06-27",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "LazyLibrarian",
|
||||
"slug": "lazylibrarian",
|
||||
"categories": [
|
||||
14
|
||||
13
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "listmonk",
|
||||
"slug": "listmonk",
|
||||
"categories": [
|
||||
22
|
||||
0
|
||||
],
|
||||
"date_created": "2024-11-22",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "LubeLogger",
|
||||
"slug": "lubelogger",
|
||||
"categories": [
|
||||
9
|
||||
24
|
||||
],
|
||||
"date_created": "2024-11-29",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Mafl",
|
||||
"slug": "mafl",
|
||||
"categories": [
|
||||
25
|
||||
10
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "MagicMirror Server",
|
||||
"slug": "magicmirror",
|
||||
"categories": [
|
||||
16
|
||||
24
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Matterbridge",
|
||||
"slug": "matterbridge",
|
||||
"categories": [
|
||||
22
|
||||
17
|
||||
],
|
||||
"date_created": "2024-06-12",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Medusa",
|
||||
"slug": "medusa",
|
||||
"categories": [
|
||||
14
|
||||
13
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -10,7 +10,7 @@
|
||||
{ "name": "Databases", "id": 8, "sort_order": 8.0 },
|
||||
{ "name": "Monitoring & Analytics", "id": 9, "sort_order": 9.0 },
|
||||
{ "name": "Dashboards & Frontends", "id": 10, "sort_order": 10.0 },
|
||||
{ "name": "Files, Downloads & Torrents", "id": 11, "sort_order": 11.0 },
|
||||
{ "name": "Files & Downloads", "id": 11, "sort_order": 11.0 },
|
||||
{ "name": "Documents & Notes", "id": 12, "sort_order": 12.0 },
|
||||
{ "name": "Media & Streaming", "id": 13, "sort_order": 13.0 },
|
||||
{ "name": "*Arr Suite", "id": 14, "sort_order": 14.0 },
|
||||
@ -19,8 +19,8 @@
|
||||
{ "name": "ZigBee, Z-Wave & Matter", "id": 17, "sort_order": 17.0 },
|
||||
{ "name": "MQTT & Messaging", "id": 18, "sort_order": 18.0 },
|
||||
{ "name": "Automation & Scheduling", "id": 19, "sort_order": 19.0 },
|
||||
{ "name": "Coding & Dev Tools", "id": 20, "sort_order": 20.0 },
|
||||
{ "name": "Web Servers & Reverse Proxies", "id": 21, "sort_order": 21.0 },
|
||||
{ "name": "AI / Coding & Dev-Tools", "id": 20, "sort_order": 20.0 },
|
||||
{ "name": "Webservers & Proxies", "id": 21, "sort_order": 21.0 },
|
||||
{ "name": "Bots & ChatOps", "id": 22, "sort_order": 22.0 },
|
||||
{ "name": "Finance & Budgeting", "id": 23, "sort_order": 23.0 },
|
||||
{ "name": "Gaming & Leisure", "id": 24, "sort_order": 24.0 },
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "MeTube",
|
||||
"slug": "metube",
|
||||
"categories": [
|
||||
13
|
||||
11
|
||||
],
|
||||
"date_created": "2024-06-12",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Mikrotik RouterOS CHR",
|
||||
"slug": "mikrotik-routeros",
|
||||
"categories": [
|
||||
4
|
||||
2
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "vm",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Proxmox VE Monitor-All",
|
||||
"slug": "monitor-all",
|
||||
"categories": [
|
||||
9
|
||||
1
|
||||
],
|
||||
"date_created": "2024-04-29",
|
||||
"type": "misc",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "n8n",
|
||||
"slug": "n8n",
|
||||
"categories": [
|
||||
19
|
||||
16
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Proxmox VE Netdata",
|
||||
"slug": "netdata",
|
||||
"categories": [
|
||||
9
|
||||
1
|
||||
],
|
||||
"date_created": "2024-04-29",
|
||||
"type": "misc",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Nginx Proxy Manager",
|
||||
"slug": "nginxproxymanager",
|
||||
"categories": [
|
||||
25
|
||||
21
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "NocoDB",
|
||||
"slug": "nocodb",
|
||||
"categories": [
|
||||
28
|
||||
25
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Node-Red",
|
||||
"slug": "node-red",
|
||||
"categories": [
|
||||
19
|
||||
16
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Notifiarr",
|
||||
"slug": "notifiarr",
|
||||
"categories": [
|
||||
22
|
||||
14
|
||||
],
|
||||
"date_created": "2024-06-12",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "ntfy",
|
||||
"slug": "ntfy",
|
||||
"categories": [
|
||||
22
|
||||
19
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "OctoPrint",
|
||||
"slug": "octoprint",
|
||||
"categories": [
|
||||
16
|
||||
24
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Ombi",
|
||||
"slug": "ombi",
|
||||
"categories": [
|
||||
14
|
||||
13
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "OpenWrt",
|
||||
"slug": "openwrt",
|
||||
"categories": [
|
||||
2
|
||||
4
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "vm",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Part-DB",
|
||||
"slug": "part-db",
|
||||
"categories": [
|
||||
28
|
||||
25
|
||||
],
|
||||
"date_created": "2024-12-18",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Proxmox Backup Server",
|
||||
"slug": "pbs",
|
||||
"categories": [
|
||||
7
|
||||
1
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Petio",
|
||||
"slug": "petio",
|
||||
"categories": [
|
||||
14
|
||||
13
|
||||
],
|
||||
"date_created": "2024-06-12",
|
||||
"type": "ct",
|
||||
|
@ -2,6 +2,7 @@
|
||||
"name": "phpIPAM",
|
||||
"slug": "phpipam",
|
||||
"categories": [
|
||||
4
|
||||
],
|
||||
"date_created": "2025-01-15",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Pi.Alert",
|
||||
"slug": "pialert",
|
||||
"categories": [
|
||||
6
|
||||
4
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "PiMox HAOS",
|
||||
"slug": "pimox-haos-vm",
|
||||
"categories": [
|
||||
2
|
||||
16
|
||||
],
|
||||
"date_created": "2024-04-29",
|
||||
"type": "vm",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Pingvin Share",
|
||||
"slug": "pingvin",
|
||||
"categories": [
|
||||
25
|
||||
11
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Pocketbase",
|
||||
"slug": "pocketbase",
|
||||
"categories": [
|
||||
28
|
||||
8
|
||||
],
|
||||
"date_created": "2024-05-07",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Podman Home Assistant Container",
|
||||
"slug": "podman-homeassistant",
|
||||
"categories": [
|
||||
3
|
||||
16
|
||||
],
|
||||
"date_created": "2024-04-29",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Proxmox Backup Server Post Install",
|
||||
"slug": "post-pbs-install",
|
||||
"categories": [
|
||||
7
|
||||
1
|
||||
],
|
||||
"date_created": "2024-04-29",
|
||||
"type": "misc",
|
||||
|
@ -1,46 +1,47 @@
|
||||
{
|
||||
"name": "Proxmox Mail Gateway Post Install",
|
||||
"slug": "post-pmg-install",
|
||||
"categories": [
|
||||
],
|
||||
"date_created": "2025-01-20",
|
||||
"type": "misc",
|
||||
"updateable": false,
|
||||
"privileged": false,
|
||||
"interface_port": null,
|
||||
"documentation": null,
|
||||
"website": null,
|
||||
"logo": "https://raw.githubusercontent.com/home-assistant/brands/master/core_integrations/proxmoxve/icon.png",
|
||||
"description": "The script will give options to Disable the Enterprise Repo, Add/Correct PMG Sources, Enable the No-Subscription Repo, Add Test Repo, Disable Subscription Nag, Update Proxmox Mail Gateway and Reboot PMG.",
|
||||
"install_methods": [
|
||||
{
|
||||
"type": "default",
|
||||
"script": "misc/post-pmg-install.sh",
|
||||
"resources": {
|
||||
"cpu": null,
|
||||
"ram": null,
|
||||
"hdd": null,
|
||||
"os": null,
|
||||
"version": null
|
||||
"name": "Proxmox Mail Gateway Post Install",
|
||||
"slug": "post-pmg-install",
|
||||
"categories": [
|
||||
1
|
||||
],
|
||||
"date_created": "2025-01-20",
|
||||
"type": "misc",
|
||||
"updateable": false,
|
||||
"privileged": false,
|
||||
"interface_port": null,
|
||||
"documentation": null,
|
||||
"website": null,
|
||||
"logo": "https://raw.githubusercontent.com/home-assistant/brands/master/core_integrations/proxmoxve/icon.png",
|
||||
"description": "The script will give options to Disable the Enterprise Repo, Add/Correct PMG Sources, Enable the No-Subscription Repo, Add Test Repo, Disable Subscription Nag, Update Proxmox Mail Gateway and Reboot PMG.",
|
||||
"install_methods": [
|
||||
{
|
||||
"type": "default",
|
||||
"script": "misc/post-pmg-install.sh",
|
||||
"resources": {
|
||||
"cpu": null,
|
||||
"ram": null,
|
||||
"hdd": null,
|
||||
"os": null,
|
||||
"version": null
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"default_credentials": {
|
||||
"username": null,
|
||||
"password": null
|
||||
},
|
||||
"notes": [
|
||||
{
|
||||
"text": "Proxmox Mail Gateway ONLY",
|
||||
"type": "info"
|
||||
],
|
||||
"default_credentials": {
|
||||
"username": null,
|
||||
"password": null
|
||||
},
|
||||
{
|
||||
"text": "Execute within the Proxmox Mail Gateway Shell",
|
||||
"type": "info"
|
||||
},
|
||||
{
|
||||
"text": "It is recommended to answer “yes” (y) to all options presented during the process.",
|
||||
"type": "info"
|
||||
}
|
||||
]
|
||||
}
|
||||
"notes": [
|
||||
{
|
||||
"text": "Proxmox Mail Gateway ONLY",
|
||||
"type": "warning"
|
||||
},
|
||||
{
|
||||
"text": "Execute within the Proxmox Mail Gateway Shell",
|
||||
"type": "info"
|
||||
},
|
||||
{
|
||||
"text": "It is recommended to answer “yes” (y) to all options presented during the process.",
|
||||
"type": "info"
|
||||
}
|
||||
]
|
||||
}
|
@ -12,7 +12,7 @@
|
||||
"documentation": null,
|
||||
"website": "https://readeck.org/",
|
||||
"logo": "https://codeberg.org/readeck/readeck/raw/branch/main/web/media/logo-square.svg",
|
||||
"description": "Readeck helps you keep all that web content you\u2019ll want to revisit in an hour, tomorrow, or in 20 years.",
|
||||
"description": "Readeck helps you keep all that web content you want to revisit in an hour, tomorrow, or in 20 years.",
|
||||
"install_methods": [
|
||||
{
|
||||
"type": "default",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "RTSPtoWeb",
|
||||
"slug": "rtsptoweb",
|
||||
"categories": [
|
||||
15
|
||||
24
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "SmokePing",
|
||||
"slug": "smokeping",
|
||||
"categories": [
|
||||
9
|
||||
4
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "SnipeIT",
|
||||
"slug": "snipeit",
|
||||
"categories": [
|
||||
28
|
||||
25
|
||||
],
|
||||
"date_created": "2024-12-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Spoolman",
|
||||
"slug": "spoolman",
|
||||
"categories": [
|
||||
16
|
||||
24
|
||||
],
|
||||
"date_created": "2024-06-13",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Syncthing",
|
||||
"slug": "syncthing",
|
||||
"categories": [
|
||||
11
|
||||
12
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Tandoor Recipes",
|
||||
"slug": "tandoor",
|
||||
"categories": [
|
||||
12
|
||||
24
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Tdarr",
|
||||
"slug": "tdarr",
|
||||
"categories": [
|
||||
13
|
||||
14
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Tianji",
|
||||
"slug": "tianji",
|
||||
"categories": [
|
||||
25
|
||||
9
|
||||
],
|
||||
"date_created": "2024-09-14",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Traccar",
|
||||
"slug": "traccar",
|
||||
"categories": [
|
||||
16
|
||||
0
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Traefik",
|
||||
"slug": "traefik",
|
||||
"categories": [
|
||||
25
|
||||
21
|
||||
],
|
||||
"date_created": "2024-05-20",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Unmanic",
|
||||
"slug": "unmanic",
|
||||
"categories": [
|
||||
13
|
||||
0
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Proxmox Update Repositories",
|
||||
"slug": "update-repo",
|
||||
"categories": [
|
||||
25
|
||||
1
|
||||
],
|
||||
"date_created": "2024-11-04",
|
||||
"type": "misc",
|
||||
|
39
json/urbackupserver.json
Normal file
39
json/urbackupserver.json
Normal file
@ -0,0 +1,39 @@
|
||||
{
|
||||
"name":"UrBackup Server",
|
||||
"slug":"urbackupserver",
|
||||
"categories":[
|
||||
7
|
||||
],
|
||||
"date_created":"2025-01-18",
|
||||
"type":"ct",
|
||||
"updateable":true,
|
||||
"privileged":true,
|
||||
"interface_port":55414,
|
||||
"documentation":"https://www.urbackup.org/documentation.html",
|
||||
"website":"https://www.urbackup.org/",
|
||||
"logo":"https://forums.urbackup.org/uploads/default/original/2X/1/1051fd74d1dcbc3ad4220b43007fcab5287272b0.png",
|
||||
"description":"URBackup is an open-source backup software designed for creating reliable and efficient backups of both files and system images. It supports client-server architecture, allowing you to back up multiple computers to a central server. It offers features such as incremental backups, real-time file backup, and scheduling, ensuring minimal data loss and quick recovery",
|
||||
"install_methods":[
|
||||
{
|
||||
"type":"default",
|
||||
"script":"ct/urbackupserver.sh",
|
||||
"resources":{
|
||||
"cpu":1,
|
||||
"ram":1024,
|
||||
"hdd":16,
|
||||
"os":"Debian",
|
||||
"version":"12"
|
||||
}
|
||||
}
|
||||
],
|
||||
"default_credentials":{
|
||||
"username":null,
|
||||
"password":null
|
||||
},
|
||||
"notes":[
|
||||
{
|
||||
"text":"You probably want to drastically extend the storage space to fit whatever clients you want to back up",
|
||||
"type":"info"
|
||||
}
|
||||
]
|
||||
}
|
@ -2,7 +2,7 @@
|
||||
"name": "Wastebin",
|
||||
"slug": "wastebin",
|
||||
"categories": [
|
||||
25
|
||||
12
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Wavelog",
|
||||
"slug": "wavelog",
|
||||
"categories": [
|
||||
9
|
||||
24
|
||||
],
|
||||
"date_created": "2024-11-12",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Webmin System Administration",
|
||||
"slug": "webmin",
|
||||
"categories": [
|
||||
2
|
||||
1
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "misc",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Whoogle",
|
||||
"slug": "whoogle",
|
||||
"categories": [
|
||||
25
|
||||
0
|
||||
],
|
||||
"date_created": "2024-05-02",
|
||||
"type": "ct",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "Zammad",
|
||||
"slug": "zammad",
|
||||
"categories": [
|
||||
28
|
||||
25
|
||||
],
|
||||
"date_created": "2024-12-18",
|
||||
"type": "ct",
|
||||
|
@ -1,4 +1,4 @@
|
||||
### Generated on 01-19-2025
|
||||
### Generated on 01-20-2025
|
||||
##################################################
|
||||
|
||||
### 2fauth.sh
|
||||
@ -1900,6 +1900,21 @@ APP=Uptime Kuma
|
||||
\____/ .___/\__/_/_/ /_/ /_/\___/ /_/ |_\__,_/_/ /_/ /_/\__,_/
|
||||
/_/
|
||||
|
||||
### urbackupserver.sh
|
||||
APP=UrBackup Server
|
||||
__ __ ____ __
|
||||
/ / / /____/ __ )____ ______/ /____ ______
|
||||
/ / / / ___/ __ / __ `/ ___/ //_/ / / / __ \
|
||||
/ /_/ / / / /_/ / /_/ / /__/ ,< / /_/ / /_/ /
|
||||
\____/_/ /_____/\__,_/\___/_/|_|\__,_/ .___/
|
||||
/_/
|
||||
_____
|
||||
/ ___/___ ______ _____ _____
|
||||
\__ \/ _ \/ ___/ | / / _ \/ ___/
|
||||
___/ / __/ / | |/ / __/ /
|
||||
/____/\___/_/ |___/\___/_/
|
||||
|
||||
|
||||
### vaultwarden.sh
|
||||
APP=Vaultwarden
|
||||
_ __ ____ __
|
||||
|
@ -705,14 +705,10 @@ advanced_settings() {
|
||||
|
||||
if ADV_TAGS=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Custom Tags?[If you remove all, there will be no tags!]" 8 58 ${TAGS} --title "Advanced Tags" 3>&1 1>&2 2>&3); then
|
||||
if [ -n "${ADV_TAGS}" ]; then
|
||||
ADV_TAGS=$(echo "$ADV_TAGS" | tr -d '[:space:]') # Remove whitespace from ADV_TAGS
|
||||
if [[ "$ADV_TAGS" != *"community-script"* ]]; then
|
||||
TAGS="community-script;${ADV_TAGS}"
|
||||
else
|
||||
TAGS="${ADV_TAGS}" # ADV_TAGS already contains "community-script"
|
||||
fi
|
||||
ADV_TAGS=$(echo "$ADV_TAGS" | tr -d '[:space:]')
|
||||
TAGS="${ADV_TAGS}"
|
||||
else
|
||||
TAGS="community-script;"
|
||||
TAGS=";"
|
||||
fi
|
||||
echo -e "${NETWORK}${BOLD}${DGN}Tags: ${BGN}$TAGS${CL}"
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user