From 162bb7bfab34a02f4da13921aa106c4665f7976c Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Tue, 24 Dec 2024 19:52:32 -0800 Subject: [PATCH] proxmox: docker-compose.sh should repair dpkg first --- install/proxmox/docker-compose.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/proxmox/docker-compose.sh b/install/proxmox/docker-compose.sh index 113ee0c948..8f38abaa21 100644 --- a/install/proxmox/docker-compose.sh +++ b/install/proxmox/docker-compose.sh @@ -4,7 +4,7 @@ cd /root/.scrypted # always immediately upgrade everything in case there's a broken update. # this will also be preferable for troubleshooting via lxc reboot. export DEBIAN_FRONTEND=noninteractive -(apt -y --fix-broken install && (yes | dpkg --configure -a) && apt -y update && apt -y dist-upgrade) & +((yes | dpkg --configure -a) && apt -y --fix-broken install && apt -y update && apt -y dist-upgrade) & # foreground pull if requested. if [ -e "volume/.pull" ]