it's https, not http
This commit is contained in:
parent
d36f606f9b
commit
940ec9fdb7
|
@ -13,31 +13,31 @@ apt update && apt install curl
|
||||||
case `echo $osver` in
|
case `echo $osver` in
|
||||||
"Debian trixie/sid"*)
|
"Debian trixie/sid"*)
|
||||||
echo "Installing Repo, please wait..."
|
echo "Installing Repo, please wait..."
|
||||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo~TRIXIE+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
curl https://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo~TRIXIE+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||||
apt install /tmp/hibbian-archive-keyring.deb
|
apt install /tmp/hibbian-archive-keyring.deb
|
||||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||||
;;
|
;;
|
||||||
"Debian 12"*)
|
"Debian 12"*)
|
||||||
echo "Installing Repo, please wait..."
|
echo "Installing Repo, please wait..."
|
||||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo12+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
curl https://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo12+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||||
apt install /tmp/hibbian-archive-keyring.deb
|
apt install /tmp/hibbian-archive-keyring.deb
|
||||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||||
;;
|
;;
|
||||||
"Raspbian 12"*)
|
"Raspbian 12"*)
|
||||||
echo "Installing Repo, please wait..."
|
echo "Installing Repo, please wait..."
|
||||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo12+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
curl https://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo12+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||||
apt install /tmp/hibbian-archive-keyring.deb
|
apt install /tmp/hibbian-archive-keyring.deb
|
||||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||||
;;
|
;;
|
||||||
"Raspbian 11"*)
|
"Raspbian 11"*)
|
||||||
echo "Installing Repo, please wait..."
|
echo "Installing Repo, please wait..."
|
||||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo11+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
curl https://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo11+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||||
apt install /tmp/hibbian-archive-keyring.deb
|
apt install /tmp/hibbian-archive-keyring.deb
|
||||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||||
;;
|
;;
|
||||||
"Debian 11"*)
|
"Debian 11"*)
|
||||||
echo "Installing Repo, please wait..."
|
echo "Installing Repo, please wait..."
|
||||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo11+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
curl https://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo11+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||||
apt install /tmp/hibbian-archive-keyring.deb
|
apt install /tmp/hibbian-archive-keyring.deb
|
||||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue