From 30229fe06c3494d5b779d9e1bd5b3e0648257420 Mon Sep 17 00:00:00 2001 From: Karim SAD Date: Mon, 12 May 2025 20:04:57 -0400 Subject: [PATCH 01/12] New Script: Backrest --- ct/backrest.sh | 64 ++++++++++++++++++++++++++++++ frontend/public/json/backrest.json | 40 +++++++++++++++++++ install/backrest-install.sh | 55 +++++++++++++++++++++++++ 3 files changed, 159 insertions(+) create mode 100644 ct/backrest.sh create mode 100644 frontend/public/json/backrest.json create mode 100644 install/backrest-install.sh diff --git a/ct/backrest.sh b/ct/backrest.sh new file mode 100644 index 0000000..a61d234 --- /dev/null +++ b/ct/backrest.sh @@ -0,0 +1,64 @@ +#!/usr/bin/env bash +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +# Copyright (c) 2021-2025 tteck +# Author: ksad (enirys31) +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://garethgeorge.github.io/backrest/ + +APP="Backrest" +var_tags="${var_tags:-backup}" +var_cpu="${var_cpu:-1}" +var_ram="${var_ram:-512}" +var_disk="${var_disk:-8}" +var_os="${var_os:-ubuntu}" +var_version="${var_version:-24.04}" +var_unprivileged="${var_unprivileged:-1}" + +header_info "$APP" +variables +color +catch_errors + +function update_script() { + header_info + check_container_storage + check_container_resources + if [[ ! -d /opt/backrest ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + + RELEASE=$(curl -fsSL https://api.github.com/repos/garethgeorge/backrest/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') + if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then + msg_info "Stopping ${APP}" + systemctl stop backrest + msg_ok "Stopped ${APP}" + + msg_info "Updating ${APP} to ${RELEASE}" + cd /opt/backrest/bin + curl -fsSL "https://github.com/garethgeorge/backrest/releases/download/v${RELEASE}/backrest_Linux_x86_64.tar.gz" -o $(basename "https://github.com/garethgeorge/backrest/releases/download/v${RELEASE}/backrest_Linux_x86_64.tar.gz") + tar -xzf backrest_Linux_x86_64.tar.gz + rm -rf backrest_Linux_x86_64.tar.gz + rm -f install.sh uninstall.sh + chmod +x backrest + echo "${RELEASE}" >/opt/${APP}_version.txt + msg_ok "Updated ${APP} to ${RELEASE}" + + msg_info "Starting ${APP}" + systemctl start backrest + msg_ok "Started ${APP}" + msg_ok "Updated Successfully" + else + msg_ok "No update required. ${APP} is already at ${RELEASE}" + fi + 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 URL:${CL}" +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9898${CL}" diff --git a/frontend/public/json/backrest.json b/frontend/public/json/backrest.json new file mode 100644 index 0000000..51a8593 --- /dev/null +++ b/frontend/public/json/backrest.json @@ -0,0 +1,40 @@ +{ + "name": "Backrest", + "slug": "backrest", + "categories": [ + 7 + ], + "date_created": "2025-05-11", + "type": "ct", + "updateable": true, + "privileged": false, + "interface_port": 9898, + "documentation": "https://garethgeorge.github.io/backrest/introduction/getting-started", + "website": "https://garethgeorge.github.io/backrest", + "logo": "https://raw.githubusercontent.com/selfhst/icons/refs/heads/main/svg/backrest-light.svg", + "config_path": "/opt/backrest/config/config.json", + "description": "Backrest is a web-accessible backup solution built on top of restic and providing a WebUI which wraps the restic CLI and makes it easy to create repos, browse snapshots, and restore files. Additionally, Backrest can run in the background and take an opinionated approach to scheduling snapshots and orchestrating repo health operations.", + "install_methods": [ + { + "type": "default", + "script": "ct/backrest.sh", + "resources": { + "cpu": 1, + "ram": 512, + "hdd": 8, + "os": "ubuntu", + "version": "24.04" + } + } + ], + "default_credentials": { + "username": null, + "password": null + }, + "notes": [ + { + "type": "info", + "text": "`cat ~/.ssh/id_ed25519.pub` to view ssh public key. This key is used to authenticate with sftp targets. You can add this key on the sftp server." + } + ] +} \ No newline at end of file diff --git a/install/backrest-install.sh b/install/backrest-install.sh new file mode 100644 index 0000000..64babcc --- /dev/null +++ b/install/backrest-install.sh @@ -0,0 +1,55 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2025 community-scripts ORG +# Author: ksad (enirys31) +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://garethgeorge.github.io/backrest/ + +source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os + +msg_info "Installing Backrest" +RELEASE=$(curl -fsSL https://api.github.com/repos/garethgeorge/backrest/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') +mkdir -p /opt/backrest/{bin,config,data} +cd /opt/backrest/bin +curl -fsSL "https://github.com/garethgeorge/backrest/releases/download/v${RELEASE}/backrest_Linux_x86_64.tar.gz" -o $(basename "https://github.com/garethgeorge/backrest/releases/download/v${RELEASE}/backrest_Linux_x86_64.tar.gz") +tar -xzf backrest_Linux_x86_64.tar.gz +rm -rf backrest_Linux_x86_64.tar.gz +rm -f install.sh uninstall.sh +chmod +x backrest +echo "${RELEASE}" >/opt/${APPLICATION}_version.txt +msg_ok "Installed Backrest" + +msg_info "Creating Service" +cat </etc/systemd/system/backrest.service +[Unit] +Description=Backrest +After=network.target + +[Service] +Type=simple +User=$(whoami) +ExecStart=/opt/backrest/bin/backrest +Environment="BACKREST_PORT=0.0.0.0:9898" +Environment="BACKREST_CONFIG=/opt/backrest/config/config.json" +Environment="BACKREST_DATA=/opt/backrest/data" +Environment="XDG_CACHE_HOME=/opt/backrest/cache" + +[Install] +WantedBy=multi-user.target +EOF +systemctl enable -q --now backrest +msg_ok "Created Service" + +motd_ssh +customize + +msg_info "Cleaning up" +$STD apt-get -y autoremove +$STD apt-get -y autoclean +msg_ok "Cleaned" From b541ecf3189b2ff6073ef3aaccd34fea42c18659 Mon Sep 17 00:00:00 2001 From: enirts31 Date: Tue, 13 May 2025 09:27:07 -0400 Subject: [PATCH 02/12] Update ct/backrest.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> --- ct/backrest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/backrest.sh b/ct/backrest.sh index a61d234..17bd8c5 100644 --- a/ct/backrest.sh +++ b/ct/backrest.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) -# Copyright (c) 2021-2025 tteck +# Copyright (c) 2021-2025 community-scripts ORG # Author: ksad (enirys31) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE # Source: https://garethgeorge.github.io/backrest/ From 60788fccbdf3d1a03d91a4e0a74c1a6a7db50737 Mon Sep 17 00:00:00 2001 From: enirts31 Date: Tue, 13 May 2025 09:33:22 -0400 Subject: [PATCH 03/12] Update install/backrest-install.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> --- install/backrest-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/backrest-install.sh b/install/backrest-install.sh index 64babcc..7d1ac31 100644 --- a/install/backrest-install.sh +++ b/install/backrest-install.sh @@ -35,7 +35,7 @@ After=network.target Type=simple User=$(whoami) ExecStart=/opt/backrest/bin/backrest -Environment="BACKREST_PORT=0.0.0.0:9898" +Environment="BACKREST_PORT=9898" Environment="BACKREST_CONFIG=/opt/backrest/config/config.json" Environment="BACKREST_DATA=/opt/backrest/data" Environment="XDG_CACHE_HOME=/opt/backrest/cache" From c7c9daca80c2835458a3410dcfdd36c234f6e800 Mon Sep 17 00:00:00 2001 From: enirts31 Date: Tue, 13 May 2025 09:33:59 -0400 Subject: [PATCH 04/12] Update ct/backrest.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> --- ct/backrest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/backrest.sh b/ct/backrest.sh index 17bd8c5..5032aaf 100644 --- a/ct/backrest.sh +++ b/ct/backrest.sh @@ -1,5 +1,5 @@ #!/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/ProxmoxVED/main/misc/build.func) # Copyright (c) 2021-2025 community-scripts ORG # Author: ksad (enirys31) # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE From 5fd366e9b1afcddf24b773c074c5cac939768935 Mon Sep 17 00:00:00 2001 From: enirts31 Date: Tue, 13 May 2025 09:34:22 -0400 Subject: [PATCH 05/12] Update ct/backrest.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> --- ct/backrest.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ct/backrest.sh b/ct/backrest.sh index 5032aaf..886751c 100644 --- a/ct/backrest.sh +++ b/ct/backrest.sh @@ -27,7 +27,6 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - RELEASE=$(curl -fsSL https://api.github.com/repos/garethgeorge/backrest/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then msg_info "Stopping ${APP}" From 75812b4409b0538ce7d0dcbd3ac94abdc6a3c542 Mon Sep 17 00:00:00 2001 From: enirts31 Date: Tue, 13 May 2025 09:34:47 -0400 Subject: [PATCH 06/12] Update ct/backrest.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> --- ct/backrest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/backrest.sh b/ct/backrest.sh index 886751c..5eee8e8 100644 --- a/ct/backrest.sh +++ b/ct/backrest.sh @@ -35,7 +35,7 @@ function update_script() { msg_info "Updating ${APP} to ${RELEASE}" cd /opt/backrest/bin - curl -fsSL "https://github.com/garethgeorge/backrest/releases/download/v${RELEASE}/backrest_Linux_x86_64.tar.gz" -o $(basename "https://github.com/garethgeorge/backrest/releases/download/v${RELEASE}/backrest_Linux_x86_64.tar.gz") + curl -fsSL "https://github.com/garethgeorge/backrest/releases/download/v${RELEASE}/backrest_Linux_x86_64.tar.gz" -o "backrest_Linux_x86_64.tar.gz" tar -xzf backrest_Linux_x86_64.tar.gz rm -rf backrest_Linux_x86_64.tar.gz rm -f install.sh uninstall.sh From 19b0c7d527623609282b877b7277bed9c232ac27 Mon Sep 17 00:00:00 2001 From: enirts31 Date: Tue, 13 May 2025 09:35:11 -0400 Subject: [PATCH 07/12] Update ct/backrest.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> --- ct/backrest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/backrest.sh b/ct/backrest.sh index 5eee8e8..8c733b3 100644 --- a/ct/backrest.sh +++ b/ct/backrest.sh @@ -10,7 +10,7 @@ var_tags="${var_tags:-backup}" var_cpu="${var_cpu:-1}" var_ram="${var_ram:-512}" var_disk="${var_disk:-8}" -var_os="${var_os:-ubuntu}" +var_os="${var_os:-debian}" var_version="${var_version:-24.04}" var_unprivileged="${var_unprivileged:-1}" From a4c69b211c1734557bef7641cb9163068213083e Mon Sep 17 00:00:00 2001 From: enirts31 Date: Tue, 13 May 2025 09:35:25 -0400 Subject: [PATCH 08/12] Update ct/backrest.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> --- ct/backrest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/backrest.sh b/ct/backrest.sh index 8c733b3..c69d359 100644 --- a/ct/backrest.sh +++ b/ct/backrest.sh @@ -11,7 +11,7 @@ var_cpu="${var_cpu:-1}" var_ram="${var_ram:-512}" var_disk="${var_disk:-8}" var_os="${var_os:-debian}" -var_version="${var_version:-24.04}" +var_version="${var_version:-12}" var_unprivileged="${var_unprivileged:-1}" header_info "$APP" From 145d116ef834a3e39ad51202dc207572ac4733f2 Mon Sep 17 00:00:00 2001 From: enirts31 Date: Tue, 13 May 2025 09:36:19 -0400 Subject: [PATCH 09/12] Update frontend/public/json/backrest.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> --- frontend/public/json/backrest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/public/json/backrest.json b/frontend/public/json/backrest.json index 51a8593..4a1055d 100644 --- a/frontend/public/json/backrest.json +++ b/frontend/public/json/backrest.json @@ -22,7 +22,7 @@ "cpu": 1, "ram": 512, "hdd": 8, - "os": "ubuntu", + "os": "debian", "version": "24.04" } } From 80b76212d97feca29b07cfe7e29a47da4911827a Mon Sep 17 00:00:00 2001 From: enirts31 Date: Tue, 13 May 2025 09:37:12 -0400 Subject: [PATCH 10/12] Update frontend/public/json/backrest.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com> --- frontend/public/json/backrest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/public/json/backrest.json b/frontend/public/json/backrest.json index 4a1055d..a3e643d 100644 --- a/frontend/public/json/backrest.json +++ b/frontend/public/json/backrest.json @@ -23,7 +23,7 @@ "ram": 512, "hdd": 8, "os": "debian", - "version": "24.04" + "version": "12" } } ], From 6ab9a16e959101fa4f897f52dcf1e016c799ca56 Mon Sep 17 00:00:00 2001 From: Karim SAD Date: Tue, 13 May 2025 09:43:12 -0400 Subject: [PATCH 11/12] Update install/backrest-install.sh --- install/backrest-install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install/backrest-install.sh b/install/backrest-install.sh index 7d1ac31..14d7f1a 100644 --- a/install/backrest-install.sh +++ b/install/backrest-install.sh @@ -17,10 +17,8 @@ msg_info "Installing Backrest" RELEASE=$(curl -fsSL https://api.github.com/repos/garethgeorge/backrest/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') mkdir -p /opt/backrest/{bin,config,data} cd /opt/backrest/bin -curl -fsSL "https://github.com/garethgeorge/backrest/releases/download/v${RELEASE}/backrest_Linux_x86_64.tar.gz" -o $(basename "https://github.com/garethgeorge/backrest/releases/download/v${RELEASE}/backrest_Linux_x86_64.tar.gz") +curl -fsSL "https://github.com/garethgeorge/backrest/releases/download/v${RELEASE}/backrest_Linux_x86_64.tar.gz" -o "backrest_Linux_x86_64.tar.gz" tar -xzf backrest_Linux_x86_64.tar.gz -rm -rf backrest_Linux_x86_64.tar.gz -rm -f install.sh uninstall.sh chmod +x backrest echo "${RELEASE}" >/opt/${APPLICATION}_version.txt msg_ok "Installed Backrest" @@ -33,7 +31,7 @@ After=network.target [Service] Type=simple -User=$(whoami) +User=root ExecStart=/opt/backrest/bin/backrest Environment="BACKREST_PORT=9898" Environment="BACKREST_CONFIG=/opt/backrest/config/config.json" @@ -52,4 +50,6 @@ customize msg_info "Cleaning up" $STD apt-get -y autoremove $STD apt-get -y autoclean +rm -rf backrest_Linux_x86_64.tar.gz +rm -f install.sh uninstall.sh msg_ok "Cleaned" From 032fa7533c8cbb6e43a2eff05570e814c588215a Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Wed, 14 May 2025 08:48:23 +0000 Subject: [PATCH 12/12] Update .app files --- ct/headers/authentik | 6 ------ ct/headers/backrest | 6 ++++++ ct/headers/bookstack | 6 ------ ct/headers/gatus | 6 ------ ct/headers/homeassistant-core | 6 ------ ct/headers/matterbridge | 6 ------ ct/headers/mattermost | 6 ------ ct/headers/openproject | 6 ------ ct/headers/paperless-ngx | 6 ------ 9 files changed, 6 insertions(+), 48 deletions(-) delete mode 100644 ct/headers/authentik create mode 100644 ct/headers/backrest delete mode 100644 ct/headers/bookstack delete mode 100644 ct/headers/gatus delete mode 100644 ct/headers/homeassistant-core delete mode 100644 ct/headers/matterbridge delete mode 100644 ct/headers/mattermost delete mode 100644 ct/headers/openproject delete mode 100644 ct/headers/paperless-ngx diff --git a/ct/headers/authentik b/ct/headers/authentik deleted file mode 100644 index f609964..0000000 --- a/ct/headers/authentik +++ /dev/null @@ -1,6 +0,0 @@ - ___ __ __ __ _ __ - / | __ __/ /_/ /_ ___ ____ / /_(_) /__ - / /| |/ / / / __/ __ \/ _ \/ __ \/ __/ / //_/ - / ___ / /_/ / /_/ / / / __/ / / / /_/ / ,< -/_/ |_\__,_/\__/_/ /_/\___/_/ /_/\__/_/_/|_| - diff --git a/ct/headers/backrest b/ct/headers/backrest new file mode 100644 index 0000000..fd1f7f0 --- /dev/null +++ b/ct/headers/backrest @@ -0,0 +1,6 @@ + ____ __ __ + / __ )____ ______/ /__________ _____/ /_ + / __ / __ `/ ___/ //_/ ___/ _ \/ ___/ __/ + / /_/ / /_/ / /__/ ,< / / / __(__ ) /_ +/_____/\__,_/\___/_/|_/_/ \___/____/\__/ + diff --git a/ct/headers/bookstack b/ct/headers/bookstack deleted file mode 100644 index f686466..0000000 --- a/ct/headers/bookstack +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ __ __ - / __ )____ ____ / /_______/ /_____ ______/ /__ - / __ / __ \/ __ \/ //_/ ___/ __/ __ `/ ___/ //_/ - / /_/ / /_/ / /_/ / ,< (__ ) /_/ /_/ / /__/ ,< -/_____/\____/\____/_/|_/____/\__/\__,_/\___/_/|_| - diff --git a/ct/headers/gatus b/ct/headers/gatus deleted file mode 100644 index 42caf9c..0000000 --- a/ct/headers/gatus +++ /dev/null @@ -1,6 +0,0 @@ - __ - ____ _____ _/ /___ _______ - / __ `/ __ `/ __/ / / / ___/ - / /_/ / /_/ / /_/ /_/ (__ ) - \__, /\__,_/\__/\__,_/____/ -/____/ diff --git a/ct/headers/homeassistant-core b/ct/headers/homeassistant-core deleted file mode 100644 index aaf56a6..0000000 --- a/ct/headers/homeassistant-core +++ /dev/null @@ -1,6 +0,0 @@ - __ __ ___ _ __ __ ______ - / / / /___ ____ ___ ___ / | __________(_)____/ /_____ _____ / /_ / ____/___ ________ - / /_/ / __ \/ __ `__ \/ _ \ / /| | / ___/ ___/ / ___/ __/ __ `/ __ \/ __/_____/ / / __ \/ ___/ _ \ - / __ / /_/ / / / / / / __/ / ___ |(__ |__ ) (__ ) /_/ /_/ / / / / /_/_____/ /___/ /_/ / / / __/ -/_/ /_/\____/_/ /_/ /_/\___/ /_/ |_/____/____/_/____/\__/\__,_/_/ /_/\__/ \____/\____/_/ \___/ - diff --git a/ct/headers/matterbridge b/ct/headers/matterbridge deleted file mode 100644 index 6aa7b56..0000000 --- a/ct/headers/matterbridge +++ /dev/null @@ -1,6 +0,0 @@ - __ ___ __ __ __ _ __ - / |/ /___ _/ /_/ /____ _____/ /_ _____(_)___/ /___ ____ - / /|_/ / __ `/ __/ __/ _ \/ ___/ __ \/ ___/ / __ / __ `/ _ \ - / / / / /_/ / /_/ /_/ __/ / / /_/ / / / / /_/ / /_/ / __/ -/_/ /_/\__,_/\__/\__/\___/_/ /_.___/_/ /_/\__,_/\__, /\___/ - /____/ diff --git a/ct/headers/mattermost b/ct/headers/mattermost deleted file mode 100644 index 1fc67ba..0000000 --- a/ct/headers/mattermost +++ /dev/null @@ -1,6 +0,0 @@ - __ ___ __ __ __ - / |/ /___ _/ /_/ /____ _________ ___ ____ _____/ /_ - / /|_/ / __ `/ __/ __/ _ \/ ___/ __ `__ \/ __ \/ ___/ __/ - / / / / /_/ / /_/ /_/ __/ / / / / / / / /_/ (__ ) /_ -/_/ /_/\__,_/\__/\__/\___/_/ /_/ /_/ /_/\____/____/\__/ - diff --git a/ct/headers/openproject b/ct/headers/openproject deleted file mode 100644 index 79fe7cf..0000000 --- a/ct/headers/openproject +++ /dev/null @@ -1,6 +0,0 @@ - ____ ____ _ __ - / __ \____ ___ ____ / __ \_________ (_)__ _____/ /_ - / / / / __ \/ _ \/ __ \/ /_/ / ___/ __ \ / / _ \/ ___/ __/ -/ /_/ / /_/ / __/ / / / ____/ / / /_/ / / / __/ /__/ /_ -\____/ .___/\___/_/ /_/_/ /_/ \____/_/ /\___/\___/\__/ - /_/ /___/ diff --git a/ct/headers/paperless-ngx b/ct/headers/paperless-ngx deleted file mode 100644 index 177cf57..0000000 --- a/ct/headers/paperless-ngx +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ - / __ \____ _____ ___ _____/ /__ __________ ____ ____ __ __ - / /_/ / __ `/ __ \/ _ \/ ___/ / _ \/ ___/ ___/_____/ __ \/ __ `/ |/_/ - / ____/ /_/ / /_/ / __/ / / / __(__ |__ )_____/ / / / /_/ /> < -/_/ \__,_/ .___/\___/_/ /_/\___/____/____/ /_/ /_/\__, /_/|_| - /_/ /____/