]> _ Git - fluidbook_processfarm.git/commitdiff
wait #6149 @0.25
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Fri, 21 Jul 2023 12:09:17 +0000 (14:09 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Fri, 21 Jul 2023 12:09:17 +0000 (14:09 +0200)
app/bin/mount
app/ping.php

index 63d5de457161a685d8231d356120b0ba867ba8d2..10c299fa8ad6a065b1c2422acd1b947808aa4131 100755 (executable)
@@ -27,6 +27,13 @@ else
      sshfs -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 -p 58745 -o uid=33 -o gid=33 -o allow_other toolbox@toolbox.fluidbook.com:/application/protected/fluidbookpublication/cache/pdffiles /application/protected/fluidbookpublication/cache/pdffiles
 fi
 
+mkdir -p /application/protected/fluidbookpublication/working
+if mountpoint -q "/application/protected/fluidbookpublication/working"; then
+    :
+else
+     sshfs -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 -p 58745 -o uid=33 -o gid=33 -o allow_other toolbox@toolbox.fluidbook.com:/application/protected/fluidbookpublication/working /application/protected/fluidbookpublication/working
+fi
+
 mkdir -p /application/usstorage
 if mountpoint -q "/application/usstorage"; then
     :
index 8f4632a7065d1d02f0ea4c53c602143fa3bbf979..ea46292489914396f2df9d642d1168d500b84141 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-$files = ['/files', '/application/protected/fluidbookpublication/docs', '/usfiles','/application/protected/fluidbookpublication/cache/pdffiles'];
+$files = ['/files', '/application/protected/fluidbookpublication/docs', '/usfiles','/application/protected/fluidbookpublication/cache/pdffiles','/application/protected/fluidbookpublication/working'];
 foreach ($files as $file) {
        if (!file_exists($file.'/status')) {
                die($file.'/status not found');