mirror of https://github.com/tteck/Proxmox.git
Compare commits
No commits in common. "4744ccb562d2bc17450567176b8d590370ed72f9" and "775134c2595cc96aa669410207fef32519dce598" have entirely different histories.
4744ccb562
...
775134c259
|
@ -66,7 +66,6 @@ msg_ok "Updated ${APP} LXC"
|
|||
exit
|
||||
fi
|
||||
if [ "$UPD" == "2" ]; then
|
||||
set +e
|
||||
bash -c "$(wget -qO - https://raw.githubusercontent.com/mrworf/plexupdate/master/extras/installer.sh)"
|
||||
exit
|
||||
fi
|
||||
|
|
|
@ -22,11 +22,11 @@ msg_ok "Installed Dependencies"
|
|||
msg_info "Installing Blocky"
|
||||
systemctl stop systemd-resolved
|
||||
$STD systemctl disable systemd-resolved.service
|
||||
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) }')
|
||||
wget -q https://github.com/0xERR0R/blocky/releases/download/v$RELEASE/blocky_${RELEASE}_Linux_x86_64.tar.gz
|
||||
RELEASE=$(curl -s https://api.github.com/repos/0xERR0R/blocky/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
|
||||
wget -q https://github.com/0xERR0R/blocky/releases/download/v$RELEASE/blocky_v${RELEASE}_Linux_x86_64.tar.gz
|
||||
mkdir -p /opt/blocky
|
||||
tar -xf blocky_${RELEASE}_Linux_x86_64.tar.gz -C /opt/blocky
|
||||
rm -rf blocky_${RELEASE}_Linux_x86_64.tar.gz
|
||||
tar -xf blocky_v${RELEASE}_Linux_x86_64.tar.gz -C /opt/blocky
|
||||
rm -rf blocky_v${RELEASE}_Linux_x86_64.tar.gz
|
||||
cat <<EOF >/opt/blocky/config.yml
|
||||
upstream:
|
||||
# these external DNS resolvers will be used. Blocky picks 2 random resolvers from the list for each query
|
||||
|
|
Loading…
Reference in New Issue