diff --git a/examples/remote/create_jdl.py b/examples/remote/create_jdl.py
index a1c5b4b76ef2c865560b0ed9e901fb9421944f13..45345cca3e42fdff20c015ae1df8468d59d7f52b 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"')