Compare commits

...

9 Commits

Author SHA1 Message Date
tteckster 19f08297e6
Update sabnzbd-install.sh
code refactoring
2023-11-13 18:20:59 -05:00
tteckster bbd7393d94
Update sabnzbd-install.sh
fixes https://github.com/tteck/Proxmox/issues/2051
2023-11-13 17:42:37 -05:00
tteckster 4748a65692
Update prometheus.sh
- default Debian 12
Thanks @onethree7
2023-11-13 16:22:39 -05:00
tteckster b03ddde9e2
Update daemonsync.sh
- default Debian 12
Thanks @onethree7
2023-11-13 16:12:08 -05:00
tteckster 70d8ce3706
Update casaos.sh
default Debian 12
2023-11-13 16:07:30 -05:00
tteckster f2f9b035b3
default Debian 12
- Podman
- Podman-Homeassastant
2023-11-13 15:54:23 -05:00
tteckster 073aba4d5d
Update whoogle.sh
default Debian 12
2023-11-13 15:49:48 -05:00
tteckster 8c8bce10e5
Update blocky.sh
default Debian 12
2023-11-13 13:07:54 -05:00
tteckster 2f82410083
Update blocky-install.sh
code refactoring
2023-11-13 13:07:18 -05:00
9 changed files with 18 additions and 17 deletions

View File

@ -23,7 +23,7 @@ var_disk="2"
var_cpu="1" var_cpu="1"
var_ram="512" var_ram="512"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -23,7 +23,7 @@ var_disk="8"
var_cpu="2" var_cpu="2"
var_ram="2048" var_ram="2048"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -23,7 +23,7 @@ var_disk="8"
var_cpu="1" var_cpu="1"
var_ram="512" var_ram="512"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -27,7 +27,7 @@ var_disk="16"
var_cpu="2" var_cpu="2"
var_ram="2048" var_ram="2048"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -23,7 +23,7 @@ var_disk="4"
var_cpu="2" var_cpu="2"
var_ram="2048" var_ram="2048"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -23,7 +23,7 @@ var_disk="4"
var_cpu="1" var_cpu="1"
var_ram="2048" var_ram="2048"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -23,7 +23,7 @@ var_disk="2"
var_cpu="1" var_cpu="1"
var_ram="512" var_ram="512"
var_os="debian" var_os="debian"
var_version="11" var_version="12"
variables variables
color color
catch_errors catch_errors

View File

@ -20,13 +20,13 @@ $STD apt-get install -y mc
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing Blocky" msg_info "Installing Blocky"
systemctl stop systemd-resolved if systemctl is-active systemd-resolved > /dev/null 2>&1; then
$STD systemctl disable systemd-resolved.service systemctl disable -q --now systemd-resolved
RELEASE=0.20 #$(curl -s https://api.github.com/repos/0xERR0R/blocky/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') fi
wget -q https://github.com/0xERR0R/blocky/releases/download/v$RELEASE/blocky_${RELEASE}_Linux_x86_64.tar.gz mkdir /opt/blocky
mkdir -p /opt/blocky RELEASE=$(curl -s https://api.github.com/repos/0xERR0R/blocky/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
tar -xf blocky_${RELEASE}_Linux_x86_64.tar.gz -C /opt/blocky wget -qO- https://github.com/0xERR0R/blocky/releases/download/v${RELEASE}/blocky_v${RELEASE}_Linux_x86_64.tar.gz | tar -xzf - -C /opt/blocky/
rm -rf blocky_${RELEASE}_Linux_x86_64.tar.gz
cat <<EOF >/opt/blocky/config.yml cat <<EOF >/opt/blocky/config.yml
upstream: upstream:
# these external DNS resolvers will be used. Blocky picks 2 random resolvers from the list for each query # these external DNS resolvers will be used. Blocky picks 2 random resolvers from the list for each query

View File

@ -19,9 +19,10 @@ $STD apt-get install -y sudo
$STD apt-get install -y mc $STD apt-get install -y mc
$STD apt-get install -y par2 $STD apt-get install -y par2
$STD apt-get install -y p7zip-full $STD apt-get install -y p7zip-full
wget -q http://http.us.debian.org/debian/pool/non-free/u/unrar-nonfree/unrar_7.0.2-1_amd64.deb RELEASE=$(curl -s http://http.us.debian.org/debian/pool/non-free/u/unrar-nonfree/ | grep -oP 'href="\K[^"]*unrar_7\.\d+\.\d+-\d+_amd64\.deb')
$STD dpkg -i unrar_7.0.2-1_amd64.deb wget -q http://http.us.debian.org/debian/pool/non-free/u/unrar-nonfree/$RELEASE
rm unrar_7.0.2-1_amd64.deb $STD dpkg -i unrar*.deb
rm unrar*.deb
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Updating Python3" msg_info "Updating Python3"