Compare commits

..

1 Commits

Author SHA1 Message Date
push-app-to-main[bot] b6e4d5af2a Add poznote (ct) 2026-07-26 11:12:48 +00:00
5 changed files with 86 additions and 63 deletions
+6
View File
@@ -0,0 +1,6 @@
____ __
/ __ \____ ____ ____ ____ / /____
/ /_/ / __ \/_ / / __ \/ __ \/ __/ _ \
/ ____/ /_/ / / /_/ / / / /_/ / /_/ __/
/_/ \____/ /___/_/ /_/\____/\__/\___/
-6
View File
@@ -1,6 +0,0 @@
__ __ __
/ / / /___ ____ ____ ______/ /_____ __________
/ / / / __ \/ __ \/ __ `/ ___/ //_/ _ \/ ___/ ___/
/ /_/ / / / / /_/ / /_/ / /__/ ,< / __/ / / /
\____/_/ /_/ .___/\__,_/\___/_/|_|\___/_/ /_/
/_/
+17 -12
View File
@@ -3,13 +3,13 @@ source "$(dirname "${BASH_SOURCE[0]}")/../misc/build.func" 2>/dev/null || source
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://unpackerr.zip/
# Source: https://github.com/timothepoznanski/poznote
APP="Unpackerr"
var_tags="${var_tags:-downloads;arr;automation;extraction}"
APP="Poznote"
var_tags="${var_tags:-notes;documentation;php}"
var_cpu="${var_cpu:-1}"
var_ram="${var_ram:-512}"
var_disk="${var_disk:-2}"
var_disk="${var_disk:-4}"
var_os="${var_os:-debian}"
var_version="${var_version:-13}"
var_arm64="${var_arm64:-yes}"
@@ -25,24 +25,29 @@ function update_script() {
check_container_storage
check_container_resources
if [[ ! -f /etc/unpackerr/unpackerr.conf ]]; then
if [[ ! -d /var/www/html/data ]]; then
msg_error "No ${APP} Installation Found!"
exit
fi
if check_for_gh_release "unpackerr" "Unpackerr/unpackerr"; then
if check_for_gh_release "poznote" "timothepoznanski/poznote"; then
msg_info "Stopping Service"
systemctl stop unpackerr
systemctl stop nginx
msg_ok "Stopped Service"
create_backup /etc/unpackerr/unpackerr.conf
create_backup /var/www/html/data
DPKG_FORCE_CONFOLD=1 fetch_and_deploy_gh_release "unpackerr" "Unpackerr/unpackerr" "binary" "latest" "/opt/unpackerr" "unpackerr_*_$(arch_resolve).deb"
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "poznote" "timothepoznanski/poznote" "tarball"
msg_info "Deploying New Version"
cp -r /opt/poznote/src/. /var/www/html/
chown -R www-data:www-data /var/www/html
msg_ok "Deployed New Version"
restore_backup
msg_info "Starting Service"
systemctl start unpackerr
systemctl start nginx
msg_ok "Started Service"
msg_ok "Updated successfully!"
fi
@@ -55,5 +60,5 @@ description
msg_ok "Completed Successfully!\n"
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
echo -e "${INFO}${YW}Configure integrations in:${CL}"
echo -e "${GATEWAY}${BGN}/etc/unpackerr/unpackerr.conf${CL}"
echo -e "${INFO}${YW}Access it using the following URL:${CL}"
echo -e "${GATEWAY}${BGN}http://${IP}:8040${CL}"
+63
View File
@@ -0,0 +1,63 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://github.com/timothepoznanski/poznote
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
msg_info "Installing Dependencies"
$STD apt install -y nginx
msg_ok "Installed Dependencies"
PHP_VERSION="8.4" PHP_FPM="YES" setup_php
fetch_and_deploy_gh_release "poznote" "timothepoznanski/poznote" "tarball"
msg_info "Deploying Poznote"
mkdir -p /var/www/html/data/database
cp -r /opt/poznote/src/. /var/www/html/
touch /var/www/html/data/database/poznote.db
chown -R www-data:www-data /var/www/html
msg_ok "Deployed Poznote"
msg_info "Configuring Nginx"
cat <<EOF >/etc/nginx/sites-available/poznote
server {
listen 8040;
root /var/www/html;
index index.php index.html;
location / {
try_files \$uri \$uri/ /index.php?\$query_string;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass unix:/run/php/php8.4-fpm.sock;
fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT \$document_root;
}
location ~ /\.ht {
deny all;
}
}
EOF
ln -sf /etc/nginx/sites-available/poznote /etc/nginx/sites-enabled/poznote
rm -f /etc/nginx/sites-enabled/default
$STD nginx -t
systemctl enable -q --now nginx
systemctl reload nginx
msg_ok "Configured Nginx"
motd_ssh
customize
cleanup_lxc
-45
View File
@@ -1,45 +0,0 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://unpackerr.zip/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
fetch_and_deploy_gh_release "unpackerr" "Unpackerr/unpackerr" "binary" "latest" "/opt/unpackerr" "unpackerr_*_$(arch_resolve).deb"
msg_info "Configuring Unpackerr"
mkdir -p /etc/unpackerr
cat <<EOF >/etc/unpackerr/unpackerr.conf
debug = false
quiet = false
activity = false
interval = "2m"
parallel = 1
file_mode = "0644"
dir_mode = "0755"
[webserver]
metrics = false
listen_addr = "0.0.0.0:5656"
[folders]
interval = "0s"
EOF
chmod 640 /etc/unpackerr/unpackerr.conf
msg_ok "Configured Unpackerr"
msg_info "Creating Service"
systemctl enable -q --now unpackerr
msg_ok "Created Service"
motd_ssh
customize
cleanup_lxc