mirror of https://github.com/tteck/Proxmox
Add rdtclient LXC script (#1595)
* add rdtclient (https://github.com/rogerfar/rdt-client) LXCpull/1599/head
parent
e2257ed9d7
commit
5e75bba028
2 changed files with 131 additions and 0 deletions
@ -0,0 +1,69 @@ |
|||||||
|
#!/usr/bin/env bash |
||||||
|
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func) |
||||||
|
# Copyright (c) 2021-2023 tteck |
||||||
|
# Author: tteck (tteckster) |
||||||
|
# License: MIT |
||||||
|
# https://github.com/tteck/Proxmox/raw/main/LICENSE |
||||||
|
|
||||||
|
function header_info { |
||||||
|
clear |
||||||
|
cat <<"EOF" |
||||||
|
____ ___ __ |
||||||
|
_________/ / /______/ (_)__ ____ / /_ |
||||||
|
/ ___/ __ / __/ ___/ / / _ \/ __ \/ __/ |
||||||
|
/ / / /_/ / /_/ /__/ / / __/ / / / /_ |
||||||
|
/_/ \__,_/\__/\___/_/_/\___/_/ /_/\__/ |
||||||
|
|
||||||
|
EOF |
||||||
|
} |
||||||
|
header_info |
||||||
|
echo -e "Loading..." |
||||||
|
APP="RdtClient" |
||||||
|
var_disk="4" |
||||||
|
var_cpu="1" |
||||||
|
var_ram="1024" |
||||||
|
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="" |
||||||
|
DISABLEIP6="no" |
||||||
|
MTU="" |
||||||
|
SD="" |
||||||
|
NS="" |
||||||
|
MAC="" |
||||||
|
VLAN="" |
||||||
|
SSH="no" |
||||||
|
VERB="no" |
||||||
|
echo_default |
||||||
|
} |
||||||
|
|
||||||
|
function update_script() { |
||||||
|
header_info |
||||||
|
if [[ ! -d /opt/rdtclient/ ]]; then msg_error "No ${APP} Installation Found!"; exit; fi |
||||||
|
msg_info "Updating $APP LXC" |
||||||
|
apt-get update &>/dev/null |
||||||
|
apt-get -y upgrade &>/dev/null |
||||||
|
msg_ok "Updated $APP LXC" |
||||||
|
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}:6500${CL} \n" |
@ -0,0 +1,62 @@ |
|||||||
|
#!/usr/bin/env bash |
||||||
|
|
||||||
|
# Copyright (c) 2021-2023 tteck |
||||||
|
# Author: tteck (tteckster) |
||||||
|
# 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 |
||||||
|
|
||||||
|
msg_info "Installing Dependencies" |
||||||
|
$STD apt-get install -y curl |
||||||
|
$STD apt-get install -y sudo |
||||||
|
$STD apt-get install -y mc |
||||||
|
$STD apt-get install -y unzip |
||||||
|
msg_ok "Installed Dependencies" |
||||||
|
|
||||||
|
msg_info "Installing ASP.NET Core Runtime" |
||||||
|
wget -q https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb |
||||||
|
$STD dpkg -i packages-microsoft-prod.deb |
||||||
|
rm packages-microsoft-prod.deb |
||||||
|
$STD apt-get update |
||||||
|
$STD apt-get install -y dotnet-sdk-6.0 |
||||||
|
msg_ok "Installed ASP.NET Core Runtime" |
||||||
|
msg_info "Installing rdtclient" |
||||||
|
wget -q https://github.com/rogerfar/rdt-client/releases/latest/download/RealDebridClient.zip |
||||||
|
unzip -qq RealDebridClient.zip -d /opt/rdtc |
||||||
|
rm RealDebridClient.zip |
||||||
|
mkdir -p /data/db/ # defaults for rdtclient |
||||||
|
mkdir -p /data/downloads # defaults for rdtclient |
||||||
|
msg_info "Installed rdtclient" |
||||||
|
msg_info "Creating Service" |
||||||
|
cat <<EOF >/etc/systemd/system/rdtc.service |
||||||
|
[Unit] |
||||||
|
Description=RdtClient Service |
||||||
|
|
||||||
|
[Service] |
||||||
|
|
||||||
|
WorkingDirectory=/opt/rdtc |
||||||
|
ExecStart=/usr/bin/dotnet RdtClient.Web.dll |
||||||
|
SyslogIdentifier=RdtClient |
||||||
|
User=root |
||||||
|
|
||||||
|
[Install] |
||||||
|
WantedBy=multi-user.target |
||||||
|
EOF |
||||||
|
$STD systemctl daemon-reload |
||||||
|
$STD systemctl enable -q --now rdtc |
||||||
|
msg_ok "Created Service" |
||||||
|
|
||||||
|
motd_ssh |
||||||
|
customize |
||||||
|
|
||||||
|
msg_info "Cleaning up" |
||||||
|
$STD apt-get autoremove |
||||||
|
$STD apt-get autoclean |
||||||
|
msg_ok "Cleaned" |
Loading…
Reference in new issue