aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2006-05-04 16:26:41 +0000
committerschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2006-05-04 16:26:41 +0000
commit1c7e5345e2ce8e66d9ef191ad2f2e587734b50a5 (patch)
treea318b9d37737b7c0efe019efb768d328d471af99 /param.ccl
parentcc2ee658d8cc0352da45788eb2fce0315e1cd49a (diff)
Use Perl instead of C for makeblob and makemetablob.
Begin coupling Formaline to thorn Announce. Create stamp files that record which build and which simulation was run in the output directory. Begin implementing talking to an RDF server. Determine the host name in Perl, which is more reliable. (It is complicated to find a good host name.) git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@75 83718e91-0e4f-0410-abf4-91180603181f
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl42
1 files changed, 36 insertions, 6 deletions
diff --git a/param.ccl b/param.ccl
index f561ba0..0d81ba4 100644
--- a/param.ccl
+++ b/param.ccl
@@ -16,6 +16,14 @@ REAL update_interval "Update interval for the meta information (in seconds)" STE
+# Parameters for creating files containing the build and job ids
+
+BOOLEAN create_id_files "Create files from the build and job ids"
+{
+} yes
+
+
+
# Parameters for announcing meta information to the portal
BOOLEAN announce_to_portal "Announce meta information to the portal" STEERABLE=always
@@ -37,15 +45,23 @@ STRING portal_username "User name on the portal" STEERABLE=always
"" :: ""
} ""
-BOOLEAN use_relay_host "Use a relay host for connecting to the portal" STEERABLE=always
+
+
+# Parameters for storing as RDF
+
+BOOLEAN send_as_rdf "Send meta as RDF to a server" STEERABLE=always
{
-} yes
+} no
-STRING relay_host "Relay host for connecting to the portal" STEERABLE=always
+STRING rdf_hostname "RDF server host name" STEERABLE=always
{
- ".+" :: "host name"
- "" :: "try to determine a relay host automatically"
-} ""
+ "" :: ""
+} "rdf.cct.lsu.edu"
+
+INT rdf_port "RDF server port" STEERABLE=always
+{
+ 1:65535 :: ""
+} 9296
@@ -62,6 +78,20 @@ STRING storage_filename "File name for meta information" STEERABLE=always
+# Parameters for relaying to remote servers
+
+BOOLEAN use_relay_host "Use a relay host for connecting to the portal" STEERABLE=always
+{
+} yes
+
+STRING relay_host "Relay host for connecting to the portal" STEERABLE=always
+{
+ ".+" :: "host name"
+ "" :: "try to determine a relay host automatically"
+} ""
+
+
+
# Parameters for storing the source tree in the executable
BOOLEAN output_source "Output a tarball with the cactus source tree" STEERABLE=recover