forked from pegasus-isi/casa-wind-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsites.xml
24 lines (21 loc) · 1.17 KB
/
sites.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<sitecatalog xmlns="http://pegasus.isi.edu/schema/sitecatalog" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://pegasus.isi.edu/schema/sitecatalog http://pegasus.isi.edu/schema/sc-4.1.xsd" version="4.1">
<!-- The local site contains information about the submit host -->
<site handle="local" arch="x86_64" os="LINUX">
<!-- This is where intermediate data will be stored -->
<directory type="shared-scratch" path="${PWD}/scratch">
<file-server operation="all" url="file://${PWD}/scratch"/>
</directory>
<!-- This is where output data will be stored -->
<directory type="shared-storage" path="${PWD}/output">
<file-server operation="all" url="file://${PWD}/output"/>
</directory>
</site>
<site handle="condorpool" arch="x86_64" os="LINUX">
<!-- These profiles tell Pegasus that the site is a plain Condor pool -->
<profile namespace="pegasus" key="style">condor</profile>
<profile namespace="pegasus" key="data.configuration">condorio</profile>
<profile namespace="condor" key="universe">vanilla</profile>
</site>
</sitecatalog>