From b1b46c0043f98701e67a690d3b946050f82fd766 Mon Sep 17 00:00:00 2001
From: Matthias Schnepf <matthias.schnepf@student.kit.edu>
Date: Mon, 12 Sep 2016 17:20:11 +0200
Subject: [PATCH] fix camel case for example remote

---
 examples/remote/create_jdl.py | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/examples/remote/create_jdl.py b/examples/remote/create_jdl.py
index a1c5b4b..45345cc 100644
--- a/examples/remote/create_jdl.py
+++ b/examples/remote/create_jdl.py
@@ -25,12 +25,11 @@ def main():
 
     jobs.arguments = arguments  # set arguments for condor job
 
-    # Our job requires lots of CPU resources and needs access to the local EKP resources
-    jobs.requirements = 'TARGET.Cloud_Site =="GridKa" '
+    # Our job run only at Freiburg
+    jobs.requirements = 'TARGET.CloudSite =="BWFORCLUSTER" '
 
     # add extra line to run job on remote sites
-    jobs.AddExtraLines('+Remote_Job = True')
-    jobs.AddExtraLines('+Experimental_Job=True')
+    jobs.AddExtraLines('+RemoteJob = True')
 
     # start at the end a script to pack the results in an tar file
     jobs.AddExtraLines('+PreCmd = "setup.sh"')
-- 
GitLab