From 59dbd349e338594d5f7078e4efe5ef40d5a285ff Mon Sep 17 00:00:00 2001 From: Giovanni Pellerano Date: Wed, 10 Sep 2025 23:33:04 +0200 Subject: [PATCH] Add GlobaLeaks This commit adds: - GlobaLeaks script as CT - GlobaLeaks script as install - The frontend descriptor --- ct/globaleaks.sh | 44 ++++++++++++++++++++++++++++ frontend/public/json/globaleaks.json | 35 ++++++++++++++++++++++ install/globaleaks-install.sh | 25 ++++++++++++++++ 3 files changed, 104 insertions(+) create mode 100644 ct/globaleaks.sh create mode 100644 frontend/public/json/globaleaks.json create mode 100644 install/globaleaks-install.sh diff --git a/ct/globaleaks.sh b/ct/globaleaks.sh new file mode 100644 index 00000000..9bfa59ef --- /dev/null +++ b/ct/globaleaks.sh @@ -0,0 +1,44 @@ +#!/usr/bin/env bash +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +# Copyright (c) 2021-2025 communtiy-scripts ORG +# Author: Giovanni `evilaliv3` Pellerano +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/globaleaks/globaleaks-whistleblowing-software +## App Default Values +APP="GlobaLeaks" +var_tags="${var_tags:-whistleblowing-software}" +var_disk="${var_disk:-4}" +var_cpu="${var_cpu:-2}" +var_ram="${var_ram:-2048}" +var_os="${var_os:-debian}" +var_version="${var_version:-12}" + +header_info "$APP" +variables +color +catch_errors + +function update_script() { + header_info + check_container_storage + check_container_resources + if [[ ! -f /usr/sbin/globaleaks ]]; then + msg_error "No ${APP} installation found!" + exit + fi + + msg_info "Updating $APP LXC" + $STD apt-get update + $STD apt-get -y upgrade + $STD bash <(curl -fsSL https://deb.globaleaks.org//install.sh) -y + msg_ok "Updated $APP LXC" +} + +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 URL:${CL}" +echo -e "${TAB}${GATEWAY}${BGN}https://${IP}${CL}" diff --git a/frontend/public/json/globaleaks.json b/frontend/public/json/globaleaks.json new file mode 100644 index 00000000..18c066c5 --- /dev/null +++ b/frontend/public/json/globaleaks.json @@ -0,0 +1,35 @@ +{ + "name": "GlobaLeaks", + "slug": "globaleaks", + "categories": [ + 0 + ], + "date_created": "2025-09-10", + "type": "ct", + "updateable": true, + "privileged": false, + "interface_port": 80, + "documentation": "https://docs.globaleaks.org", + "website": "https://www.globaleaks.org/", + "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons/webp/globaleaks.webp", + "config_path": "", + "description": "GlobaLeaks is a free and open-source whistleblowing software enabling anyone to easily set up and maintain a secure reporting platform.", + "install_methods": [ + { + "type": "default", + "script": "ct/globaleaks.sh", + "resources": { + "cpu": 2, + "ram": 1024, + "hdd": 4, + "os": "debian", + "version": "12" + } + } + ], + "default_credentials": { + "username": null, + "password": null + }, + "notes": [] +} diff --git a/install/globaleaks-install.sh b/install/globaleaks-install.sh new file mode 100644 index 00000000..6a7c8bdd --- /dev/null +++ b/install/globaleaks-install.sh @@ -0,0 +1,25 @@ +#!/usr/bin/env bash +# Copyright (c) 2021-2025 community-scripts ORG +# Author: Giovanni `evilaliv3` Pellerano +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://github.com/globaleaks/globaleaks-whistleblowing-software + +source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os + +msg_info "Setup GlobaLeaks" +$STD bash <(curl -fsSL https://deb.globaleaks.org//install.sh) -y +msg_ok "Setup GlobaLeaks" + +motd_ssh +customize + +msg_info "Cleaning up" +$STD apt-get -y autoremove +$STD apt-get -y autoclean +msg_ok "Cleaned"