mirror of https://github.com/tteck/Proxmox.git
parent
ed6443bc84
commit
2f82410083
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue