mirror of https://github.com/tteck/Proxmox
parent
fc5ea73e45
commit
9edf4be236
2 changed files with 146 additions and 0 deletions
@ -0,0 +1,79 @@ |
||||
#!/usr/bin/env bash |
||||
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func) |
||||
# Copyright (c) 2021-2024 tteck |
||||
# Author: tteck (tteckster) |
||||
# Co-Author: ewilazarus (Gabriel Lima) |
||||
# License: MIT |
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE |
||||
|
||||
function header_info { |
||||
clear |
||||
cat <<"EOF" |
||||
_____ ______ _ ____________ ____ __ ____ __ ____________ |
||||
/ ___// _/ /| | / / ____/ __ \/ __ )/ / / / / / / / ____/_ __/ |
||||
\__ \ / // / | | / / __/ / /_/ / __ / / / / / / / / __/ / / |
||||
___/ // // /__| |/ / /___/ _, _/ /_/ / /_/ / /___/ /___/ /___ / / |
||||
/____/___/_____/___/_____/_/ |_/_____/\____/_____/_____/_____/ /_/ |
||||
|
||||
EOF |
||||
} |
||||
header_info |
||||
echo -e "Loading..." |
||||
APP="SilverBullet" |
||||
var_disk="2" |
||||
var_cpu="1" |
||||
var_ram="512" |
||||
var_os="debian" |
||||
var_version="12" |
||||
variables |
||||
color |
||||
catch_errors |
||||
|
||||
function default_settings() { |
||||
CT_TYPE="1" |
||||
PW="" |
||||
CT_ID=$NEXTID |
||||
HN=$NSAPP |
||||
DISK_SIZE="$var_disk" |
||||
CORE_COUNT="$var_cpu" |
||||
RAM_SIZE="$var_ram" |
||||
BRG="vmbr0" |
||||
NET="dhcp" |
||||
GATE="" |
||||
APT_CACHER="" |
||||
APT_CACHER_IP="" |
||||
DISABLEIP6="no" |
||||
MTU="" |
||||
SD="" |
||||
NS="" |
||||
MAC="" |
||||
VLAN="" |
||||
SSH="no" |
||||
VERB="no" |
||||
echo_default |
||||
} |
||||
|
||||
function update_script() { |
||||
header_info |
||||
if [[ ! -d /opt/silverbullet ]]; then msg_error "No ${APP} Installation Found!"; exit; fi |
||||
msg_info "Stopping ${APP} Service" |
||||
systemctl stop -q silverbullet |
||||
msg_ok "Stopped ${APP} Service" |
||||
|
||||
msg_info "Updating ${APP}" |
||||
silverbullet upgrade &> /dev/null |
||||
msg_ok "Updated ${APP}" |
||||
|
||||
msg_info "Starting ${APP} Service" |
||||
systemctl start -q silverbullet |
||||
msg_ok "Started ${APP} Service" |
||||
exit |
||||
} |
||||
|
||||
start |
||||
build_container |
||||
description |
||||
|
||||
msg_ok "Completed Successfully!\n" |
||||
echo -e "${APP} should be reachable by going to the following URL. |
||||
${BL}http://${IP}:3000${CL} \n" |
@ -0,0 +1,67 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
# Copyright (c) 2021-2024 tteck |
||||
# Author: tteck (tteckster) |
||||
# Co-Author: ewilazarus (Gabriel Lima) |
||||
# License: MIT |
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE |
||||
|
||||
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" |
||||
color |
||||
verb_ip6 |
||||
catch_errors |
||||
setting_up_container |
||||
network_check |
||||
update_os |
||||
|
||||
# This is the path of the directory where all the markdown notes will be stored. |
||||
SB_NOTES_DIR="/opt/silverbullet/notes" |
||||
|
||||
# This is a helper function that will move binaries in the deno bin folder to /usr/bin. |
||||
# It will also remove the `.deno` folder in the root directory to prevent cluttering. |
||||
replace_deno_bin() { |
||||
mv /root/.deno/bin/$1 /usr/bin/$1 |
||||
rm -rf /root/.deno |
||||
} |
||||
|
||||
msg_info "Installing Dependencies" |
||||
$STD apt-get install -y curl unzip |
||||
msg_ok "Installed Dependencies" |
||||
|
||||
msg_info "Installing Deno" |
||||
$STD bash <(curl -fsSL https://deno.land/install.sh) |
||||
replace_deno_bin "deno" |
||||
msg_ok "Installed Deno" |
||||
|
||||
msg_info "Installing SilverBullet" |
||||
$STD deno install -f --name silverbullet --unstable-kv --unstable-worker-options -A https://get.silverbullet.md |
||||
replace_deno_bin "silverbullet" |
||||
mkdir -p $SB_NOTES_DIR |
||||
msg_ok "Installed SilverBullet" |
||||
|
||||
msg_info "Creating Service" |
||||
cat <<EOF >/etc/systemd/system/silverbullet.service |
||||
[Unit] |
||||
Description=SilverBullet |
||||
After=network.target |
||||
|
||||
[Service] |
||||
User=root |
||||
WorkingDirectory=$SB_NOTES_DIR |
||||
SyslogIdentifier=silverbullet |
||||
Restart=on-failure |
||||
ExecStart=silverbullet -L 0.0.0.0 . |
||||
|
||||
[Install] |
||||
WantedBy=multi-user.target |
||||
EOF |
||||
systemctl enable -q --now silverbullet |
||||
msg_ok "Created Service" |
||||
|
||||
motd_ssh |
||||
customize |
||||
|
||||
msg_info "Cleaning up" |
||||
$STD apt-get -y autoremove |
||||
$STD apt-get -y autoclean |
||||
msg_ok "Cleaned" |
Loading…
Reference in new issue