Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/a7d3f03be5d61bbddaa2ba5f62a8fdcb4104372c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
14 additions and
2 deletions
@ -1,4 +1,16 @@
#!/usr/bin/env bash
function header_info {
cat <<"EOF"
______ _ __ __
/_ __/___ _( _) /_____________ _/ /__
/ / / __ ` / / / ___/ ___/ __ ` / / _ \
/ / / /_/ / / ( __ ) /__/ /_/ / / __/
/_/ \_ _,_/_/_/____/\_ __/\_ _,_/_/\_ __/
EOF
}
clear
header_info
echo -e "\e[1;33mThis script will add Tailscale to an existing LXC Container ONLY\e[0m"
while true; do
read -p "Did you replace 106 with your LXC ID? Proceed(y/n)?" yn
@ -37,9 +49,9 @@ lxc.cgroup2.devices.allow: c 10:200 rwm
lxc.mount.entry: /dev/net/tun dev/net/tun none bind,create= file
EOF
msg " ⏳ Installing Tailscale..."
msg " Installing Tailscale..."
lxc-attach -n $CTID -- bash -c " $( curl -fsSL https://tailscale.com/install.sh) " & >/dev/null || exit
msg " ⌛ Installed Tailscale"
msg " Installed Tailscale"
sleep 2
msg "\e[1;32m ✔ Completed Successfully!\e[0m"
msg " \e[1;31m Reboot ${ CTID } LXC to apply the changes, then run tailscale up in the LXC console\e[0m "