From 5e4982c6013e5c7fb7bf97b717685373c090f014 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 21 Feb 2023 20:25:50 +0100 Subject: [PATCH] wip #5524 @0.25 --- app/bin/mount | 6 +++--- app/ping.php | 2 +- app/process.php | 9 ++++++++- app/src/ProcessFileNoMapping.php | 14 ++++++++++++++ 4 files changed, 26 insertions(+), 5 deletions(-) create mode 100644 app/src/ProcessFileNoMapping.php diff --git a/app/bin/mount b/app/bin/mount index a28be43..5b5a04d 100755 --- a/app/bin/mount +++ b/app/bin/mount @@ -13,9 +13,9 @@ else sshfs -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 -o uid=33 -o gid=33 -o allow_other fluidbook@kingkong.cubedesigners.com:/home/fluidbook/data/docs /usfiles fi -mkdir -p /toolbox -if mountpoint -q "/toolbox"; then +mkdir -p /application/protected/fluidbookpublication +if mountpoint -q "/application/protected/fluidbookpublication"; 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 /toolbox + 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 /application/protected/fluidbookpublication fi \ No newline at end of file diff --git a/app/ping.php b/app/ping.php index 07583b4..9733643 100644 --- a/app/ping.php +++ b/app/ping.php @@ -1,2 +1,2 @@ process()); \ No newline at end of file diff --git a/app/src/ProcessFileNoMapping.php b/app/src/ProcessFileNoMapping.php new file mode 100644 index 0000000..d48c05e --- /dev/null +++ b/app/src/ProcessFileNoMapping.php @@ -0,0 +1,14 @@ +getDistantOut(); + } + + public function process() { + $this->getPath($this->isForce()); + } +} \ No newline at end of file -- 2.39.5