From bcce2e1a02f76ccecff1c9a4be8d1527794bc7c3 Mon Sep 17 00:00:00 2001 From: lgromero Date: Tue, 19 Nov 2024 13:24:08 +0100 Subject: [PATCH] refs #1161 adds echos in samba mount --- includes/etc/initramfs-tools/scripts/ogfunctions | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/includes/etc/initramfs-tools/scripts/ogfunctions b/includes/etc/initramfs-tools/scripts/ogfunctions index 1def098..14b17c4 100644 --- a/includes/etc/initramfs-tools/scripts/ogfunctions +++ b/includes/etc/initramfs-tools/scripts/ogfunctions @@ -476,6 +476,13 @@ ogConnect () nfsmount ${SERVER}:${SRC} ${DST} -o nolock${READONLY} 2> /dev/null || mount.nfs ${SERVER}:${SRC} ${DST} -o nolock${READONLY} ;; smb) + echo "qindel: SERVER: $SERVER" + echo "qindel: SRC: $SRC" + echo "qindel: DST: $DST" + echo "qindel: OPTIONS: $OPTIONS" + echo "qindel: READONLY: $READONLY" + + ping -c 3 $SERVER mount.cifs //${SERVER}/${SRC} ${DST} ${OPTIONS}${READONLY} ;; local)