From 7f86418cf57f22281f7a03b19310bc392bd7826f Mon Sep 17 00:00:00 2001 From: Dominik Siebel <145283+dsiebel@users.noreply.github.com> Date: Fri, 20 Dec 2024 10:03:49 +0100 Subject: [PATCH] new script: silverbullet (#659) * new script: silverbullet * update copyright and author information * address code review comments and suggestions * fix: overwrite existing binary on unzip * address remaining review comments * add documenation link * update header and footer to new standard * little fixes * little fixes --------- Co-authored-by: CanbiZ <47820557+MickLesk@users.noreply.github.com> --- ct/silverbullet.sh | 61 +++++++++++++++++++++++++++++++++ install/silverbullet-install.sh | 59 +++++++++++++++++++++++++++++++ json/silverbullet.json | 34 ++++++++++++++++++ 3 files changed, 154 insertions(+) create mode 100644 ct/silverbullet.sh create mode 100644 install/silverbullet-install.sh create mode 100644 json/silverbullet.json diff --git a/ct/silverbullet.sh b/ct/silverbullet.sh new file mode 100644 index 00000000..744379b5 --- /dev/null +++ b/ct/silverbullet.sh @@ -0,0 +1,61 @@ +#!/usr/bin/env bash +source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) +# Copyright (c) 2021-2024 community-scripts ORG +# Author: Dominik Siebel (dsiebel) +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://silverbullet.md + +# App default values +APP="Silverbullet" +var_tags="notes" +var_cpu="1" +var_disk="2" +var_ram="512" +var_os="debian" +var_version="12" + +# 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 /opt/silverbullet ]]; then msg_error "No ${APP} Installation Found!"; exit; fi + RELEASE=$(curl -s https://api.github.com/repos/silverbulletmd/silverbullet/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }') + if [[ ! -f "/opt/${APP}_version.txt" || "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then + msg_info "Stopping ${APP}" + systemctl stop silverbullet + msg_ok "Stopped ${APP}" + + msg_info "Updating ${APP} to v${RELEASE}" + wget -q https://github.com/silverbulletmd/silverbullet/releases/download/${RELEASE}/silverbullet-server-linux-x86_64.zip + unzip -q silverbullet-server-linux-x86_64.zip + mv silverbullet /opt/silverbullet/bin/ + chmod +x /opt/silverbullet/bin/silverbullet + echo "${RELEASE}" >/opt/silverbullet/${APP}_version.txt + msg_ok "Updated ${APP} to v${RELEASE}" + + msg_info "Starting ${APP}" + systemctl start silverbullet + msg_ok "Started ${APP}" + else + msg_ok "No update required. ${APP} is already at v${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}:3000${CL}" diff --git a/install/silverbullet-install.sh b/install/silverbullet-install.sh new file mode 100644 index 00000000..7338acd5 --- /dev/null +++ b/install/silverbullet-install.sh @@ -0,0 +1,59 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2024 community-scripts ORG +# Author: Dominik Siebel (dsiebel) +# 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 +msg_ok "Installed Dependencies" + +msg_info "Installing Silverbullet" +RELEASE=$(curl -s https://api.github.com/repos/silverbulletmd/silverbullet/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }') +mkdir -p /opt/silverbullet/bin /opt/silverbullet/space +wget -q https://github.com/silverbulletmd/silverbullet/releases/download/${RELEASE}/silverbullet-server-linux-x86_64.zip +unzip -oq -d /opt/silverbullet/bin/ silverbullet-server-linux-x86_64.zip +chmod +x /opt/silverbullet/bin/silverbullet +echo "${RELEASE}" >/opt/${APPLICATION}_version.txt +msg_ok "Installed Silverbullet" + +msg_info "Creating Service" + +cat </etc/systemd/system/silverbullet.service +[Unit] +Description=Silverbullet Daemon +After=syslog.target network.target + +[Service] +User=root +Type=simple +ExecStart=/opt/silverbullet/bin/silverbullet --hostname 0.0.0.0 --port 3000 /opt/silverbullet/space +WorkingDirectory=/opt/silverbullet +Restart=on-failure + +[Install] +WantedBy=multi-user.target +EOF +systemctl enable --now -q silverbullet +msg_ok "Created Service" + +motd_ssh +customize + +msg_info "Cleaning up" +rm -rf silverbullet-server-linux-x86_64.zip +$STD apt-get -y autoremove +$STD apt-get -y autoclean +msg_ok "Cleaned" diff --git a/json/silverbullet.json b/json/silverbullet.json new file mode 100644 index 00000000..fd82f036 --- /dev/null +++ b/json/silverbullet.json @@ -0,0 +1,34 @@ +{ + "name": "Silverbullet", + "slug": "silverbullet", + "categories": [ + 14 + ], + "date_created": "2024-12-03", + "type": "ct", + "updateable": true, + "privileged": false, + "interface_port": 3000, + "documentation": "https://silverbullet.md/Manual", + "website": "https://silverbullet.md", + "logo": "https://silverbullet.md/.client/logo.png", + "description": "SilverBullet is a note-taking application optimized for people with a hacker mindset.", + "install_methods": [ + { + "type": "default", + "script": "ct/silverbullet.sh", + "resources": { + "cpu": 1, + "ram": 512, + "hdd": 2, + "os": "debian", + "version": "12" + } + } + ], + "default_credentials": { + "username": null, + "password": null + }, + "notes": [] +}