~ubuntu-branches/debian/sid/boinc/sid

« back to all changes in this revision

Viewing changes to stripchart/stripchart.cnf

  • Committer: Package Import Robot
  • Author(s): Steffen Moeller
  • Date: 2011-08-08 01:36:51 UTC
  • mfrom: (6.1.11 experimental)
  • Revision ID: package-import@ubuntu.com-20110808013651-m1hs3cltiveuteyn
Tags: 6.13.1+dfsg-2
* Bringing notify patch to unstable.
* Adjusted build dependency to libjpeg-dev (Closes: #641093)
* Further improvements on stripchart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /usr/bin/env perl
 
1
 
 
2
# This should not be executed, but merely be included
2
3
 
3
4
use Time::Local;
4
5
 
6
7
$majorversion = 2; $minorversion = 1;
7
8
 
8
9
# Directory where gnuplot is
9
 
# $gnuplot = "/usr/local/gnuplot-3.7";
10
 
#$gnuplot = "/disks/asimov/a/users/hiramc/local/src/gnuplot-3.7";
11
 
$gnuplot = "/usr/local/bin"
 
10
$gnuplot = "/usr/bin"
12
11
 
13
12
# Temporary files
14
13
$suffix = rand(10000);
42
41
$tzdiff = timegm($sec,$min,$hour,$mday,$mon,$year) - timelocal($sec,$min,$hour,$mday,$mon,$year);
43
42
 
44
43
# Where is the stripchart executable located?
45
 
$stripchartexe = "./stripchart"
 
44
$stripchartexe = "/usr/lib/cgi-bin/stripchart"
46
45
 
47
46
# What is the default number of stripcharts?
48
47
$defaultnumcharts = 1;
52
51
 
53
52
# Where is the list of datafiles for stripchart.cgi?
54
53
# Note: there is a sample copy in the samples directory: 
55
 
$datafilelist = "datafiles";
 
54
$datafilelist = "/usr/share/stripchart/datafiles";
56
55
 
57
 
# Where is the list of user-definied cgi queries?
 
56
# Where is the list of user-defined cgi queries?
58
57
# Note: this file gets created by the cgi - must put it somewhere that the cgi user can write to 
59
 
$queryfilelist = "querylist";
 
58
$queryfilelist = "/tmp/querylist";
60
59
 
61
60
# What time is it right now?
62
61
$rightnow = time;