summaryrefslogtreecommitdiff
path: root/lib/sbin/ScheduleParser.pl
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-04-16 21:12:34 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-04-16 21:12:34 +0000
commit747a00e81c4fb05cdff2add136742aab91b3820e (patch)
treea368031b1ae96c7e29d940919c4676f50b7d2167 /lib/sbin/ScheduleParser.pl
parentdfc3990d653548da6a073c981bfe147556857cb9 (diff)
Changes to parse and validate a timelevel specifier for storage.
If you have a group with more than one timelevel it is now an error not to specify in your schedule.ccl file how many timelevels to enable. Note that the information is still not passed into the flesh, this will happen soon... This change should not affect anyone who is not using timelevels. Everyone who is will need to update their schedule.ccl files, the syntax is storage: group[<number>] to enable storage for <number> timelevels, where <number> must be between 1 and the number of timelevels specified in the interface.ccl file, inclusive. See CactusWave for examples. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@2724 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/ScheduleParser.pl')
-rw-r--r--lib/sbin/ScheduleParser.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbin/ScheduleParser.pl b/lib/sbin/ScheduleParser.pl
index 3f05805f..e3d67a89 100644
--- a/lib/sbin/ScheduleParser.pl
+++ b/lib/sbin/ScheduleParser.pl
@@ -470,7 +470,7 @@ sub ParseScheduleStatement
my($line_number, @data) = @_;
my($type, $groups);
- $data[$line_number] =~ m/^\s*(STOR|COMM)[^:]*:\s*([\w\s\,]*)/i;
+ $data[$line_number] =~ m/^\s*(STOR|COMM)[^:]*:\s*(.*)/i;
$type = "\U$1\E";