mirror of https://github.com/tteck/Proxmox.git
Compare commits
No commits in common. "606634b25a95a0ae42ddd9172790863acd77f1cd" and "5cad663da23f647ce397bc0423324614960a93d6" have entirely different histories.
606634b25a
...
5cad663da2
|
@ -21,5 +21,3 @@
|
|||
[Frigate VM on Proxmox with PCIe Coral TPU](https://www.derekseaman.com/2023/06/home-assistant-frigate-vm-on-proxmox-with-pcie-coral-tpu.html)
|
||||
|
||||
[Moving Home Assistant’s Database To MariaDB On Proxmox](https://smarthomescene.com/guides/moving-home-assistants-database-to-mariadb-on-proxmox/)
|
||||
|
||||
[How-to: Proxmox VE 7.4 to 8.0 Upgrade](https://www.derekseaman.com/2023/06/how-to-proxmox-7-4-to-8-0-upgrade.html)
|
||||
|
|
|
@ -24,7 +24,7 @@ var_disk="2"
|
|||
var_cpu="1"
|
||||
var_ram="512"
|
||||
var_os="debian"
|
||||
var_version="12"
|
||||
var_version="11"
|
||||
variables
|
||||
color
|
||||
catch_errors
|
||||
|
|
|
@ -23,7 +23,7 @@ var_disk="8"
|
|||
var_cpu="2"
|
||||
var_ram="1024"
|
||||
var_os="debian"
|
||||
var_version="12"
|
||||
var_version="11"
|
||||
variables
|
||||
color
|
||||
catch_errors
|
||||
|
|
|
@ -20,7 +20,12 @@ $STD apt-get install -y mc
|
|||
msg_ok "Installed Dependencies"
|
||||
|
||||
msg_info "Installing AdGuard Home"
|
||||
$STD bash <(curl -fsSL https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh)
|
||||
systemctl stop systemd-resolved
|
||||
echo "DNSStubListener=no" >>/etc/systemd/resolved.conf
|
||||
ln -sf /run/systemd/resolve/resolv.conf /etc/resolv.conf
|
||||
wget -qL https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh
|
||||
$STD bash install.sh
|
||||
rm install.sh
|
||||
msg_ok "Installed AdGuard Home"
|
||||
|
||||
motd_ssh
|
||||
|
|
Loading…
Reference in New Issue