From 84c61528bca1d47874eba9ee7520c17580b445e6 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Wed, 22 Jan 2025 17:27:13 +0100 Subject: [PATCH] wait #7270 --- app/bin/mount | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/bin/mount b/app/bin/mount index db935e1..1285307 100755 --- a/app/bin/mount +++ b/app/bin/mount @@ -3,7 +3,7 @@ mkdir -p /files if mountpoint -q "/files"; then : else - sshfs -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 -P -o uid=33 -o gid=33 -o allow_other fluidbook@docs.toolbox.fluidbook.com:/data /files -p 7552 + sshfs -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 -p 7552 -o uid=33 -o gid=33 -o allow_other fluidbook@docs.toolbox.fluidbook.com:/data /files fi mkdir -p /usfiles @@ -17,7 +17,7 @@ mkdir -p /application/protected/fluidbookpublication/docs if mountpoint -q "/application/protected/fluidbookpublication/docs"; then : else - sshfs -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 -P -o uid=33 -o gid=33 -o allow_other fluidbook@docs.toolbox.fluidbook.com:/data /application/protected/fluidbookpublication/docs -p 7552 + sshfs -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 -p 7552 -o uid=33 -o gid=33 -o allow_other fluidbook@docs.toolbox.fluidbook.com:/data /application/protected/fluidbookpublication/docs fi mkdir -p /application/protected/fluidbookpublication/cache/pdffiles -- 2.39.5