From 8cf878a3d9e826f9f0100c77b31f8ff3c85e6323 Mon Sep 17 00:00:00 2001 From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch> Date: Thu, 15 Feb 2018 22:55:44 +0100 Subject: [PATCH] Remove path settings from local dev system, use generic ones. Refers to #28 --- Resources/conf/config.common.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/conf/config.common.xml b/Resources/conf/config.common.xml index eba6f5a..54436ef 100644 --- a/Resources/conf/config.common.xml +++ b/Resources/conf/config.common.xml @@ -3,23 +3,23 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <!-- IncomingDirectory: directory on SourceDrive to watch for new files --> - <IncomingDirectory>ATX\INCOMING</IncomingDirectory> + <IncomingDirectory>ProgramData\AUTOTRANSFER\INCOMING</IncomingDirectory> <!-- ManagedDirectory: directory on SourceDrive where files and folders are moved while queueing for their transfer (sub-directory "PROCESSING") and to store them for deferred delection after a grace period after the transfer (sub-directory "DONE"). --> - <ManagedDirectory>ATX\MANAGED</ManagedDirectory> + <ManagedDirectory>ProgramData\AUTOTRANSFER</ManagedDirectory> <!-- DestinationAlias: friendly name for the target to be used in mails --> <DestinationAlias>Core Facility Storage</DestinationAlias> <!-- DestinationDirectory: where files should be transferred to --> - <DestinationDirectory>C:\ATX\TARGET</DestinationDirectory> + <DestinationDirectory>\\fileserver.mydomain.xy\share\</DestinationDirectory> <!-- TmpTransferDir: temporary directory relative to DestinationDirectory to be used for running transfers --> - <TmpTransferDir>d-vamp-dw</TmpTransferDir> + <TmpTransferDir>AUTOTRANSFER-TMP</TmpTransferDir> <!-- MaxCpuUsage: pause transfer if CPU usage is above this value (in %)--> <MaxCpuUsage>25</MaxCpuUsage> -- GitLab