From d17a62e75064f78e6f87ac5e7d04d8152d075f6f Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 23 Oct 2021 10:44:52 +0200 Subject: [PATCH] --no-cache for apk --- qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.4.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.4.sh b/qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.4.sh index 5b97a3e09..6466c4170 100644 --- a/qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.4.sh +++ b/qbittorrent/rootfs/etc/cont-init.d/92-smb_mounts_v1.4.sh @@ -51,7 +51,7 @@ if bashio::config.has_value 'networkdisks'; then # Test smbclient if not mounted yet if [ $MOUNTED = false ]; then bashio::log.fatal "Error, could not mount disk. Here is some debugging info :" - smbclient -V &>/dev/null || apt-get install smbclient || apk add samba-client + smbclient -V &>/dev/null || apt-get install smbclient || apk add --no-cache samba-client smbclient $disk -U $CIFS_USERNAME%$CIFS_PASSWORD --option="client min protocol"="NT1" || true smbclient -L $disk -U $CIFS_USERNAME%$CIFS_PASSWORD --option="client min protocol"="NT1" || true fi