Changeset 26170
- Timestamp:
- Nov 17, 2009, 11:53:08 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
ippScripts/scripts/dist_make_fileset.pl (modified) (5 diffs)
-
ippTasks/rcserver.pro (modified) (2 diffs)
-
ippTools/share/disttool_pendingfileset.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/dist_make_fileset.pl
r26015 r26170 40 40 # Parse the command-line arguments 41 41 my ($dist_id, $dist_dir, $target_id, $stage, $stage_id, $dest_id, $product_name, $ds_dbhost, $ds_dbname); 42 my ($label, $d ist_group, $filter);42 my ($label, $data_group, $filter); 43 43 my ($dbname, $save_temps, $verbose, $no_update, $logfile); 44 44 … … 52 52 'product_name=s' => \$product_name, # location of the data store directory for this product 53 53 'label=s' => \$label, 54 'd ist_group=s' => \$dist_group,54 'data_group=s' => \$data_group, 55 55 'filter=s' => \$filter, 56 56 'ds_dbhost=s' => \$ds_dbhost, # database host for the datastore database … … 64 64 65 65 pod2usage( -msg => "Unknown option: @ARGV", -exitval => 2 ) if @ARGV; 66 pod2usage( -msg => "Required options: --dist_id --dist_dir --target_id --stage --stage_id --d ist_group --filter --dest_id --ds_dbhost --ds_dbname",66 pod2usage( -msg => "Required options: --dist_id --dist_dir --target_id --stage --stage_id --data_group --filter --dest_id --ds_dbhost --ds_dbname", 67 67 -exitval => 3) unless 68 68 defined $dist_id and … … 71 71 defined $stage and 72 72 defined $stage_id and 73 defined $d ist_group and73 defined $data_group and 74 74 defined $filter and 75 75 defined $dest_id and … … 164 164 165 165 $command .= " --ps0 $target_id --ps1 $stage --ps2 $stage_id --ps3 $prod_col_3"; 166 $command .= " --ps4 $d ist_group --ps5 $filter";166 $command .= " --ps4 $data_group --ps5 $filter"; 167 167 168 168 $command .= " --dbname $ds_dbname --dbhost $ds_dbhost"; -
trunk/ippTasks/rcserver.pro
r26169 r26170 130 130 book getword rcPendingFS $pageName stage -var STAGE 131 131 book getword rcPendingFS $pageName stage_id -var STAGE_ID 132 book getword rcPendingFS $pageName d ist_group -var DIST_GROUP132 book getword rcPendingFS $pageName data_group -var DATA_GROUP 133 133 book getword rcPendingFS $pageName filter -var FILTER 134 134 book getword rcPendingFS $pageName dist_dir -var DIST_DIR 135 # book getword rcPendingFS $pageName clean -var CLEAN136 135 book getword rcPendingFS $pageName dest_id -var DEST_ID 137 136 book getword rcPendingFS $pageName product_name -var PRODUCT_NAME … … 148 147 book setword rcPendingFS $pageName pantaskState RUN 149 148 150 $run = dist_make_fileset.pl --dist_id $DIST_ID --target_id $TARGET_ID --stage $STAGE --stage_id $STAGE_ID --d ist_group $DIST_GROUP --filter $FILTER --dest_id $DEST_ID --product_name $PRODUCT_NAME --ds_dbhost $DS_DBHOST --ds_dbname $DS_DBNAME --dist_dir $DIST_DIR149 $run = dist_make_fileset.pl --dist_id $DIST_ID --target_id $TARGET_ID --stage $STAGE --stage_id $STAGE_ID --data_group $DATA_GROUP --filter $FILTER --dest_id $DEST_ID --product_name $PRODUCT_NAME --ds_dbhost $DS_DBHOST --ds_dbname $DS_DBNAME --dist_dir $DIST_DIR 151 150 152 151 add_standard_args run -
trunk/ippTools/share/disttool_pendingfileset.sql
r26092 r26170 5 5 distRun.outdir as dist_dir, 6 6 stage_id, 7 distTarget.dist_group, 7 -- we need to get data_group here but we don't have 8 -- the right tables joined. Perhaps we need to add that column to distRun 9 distRun.label as data_group, 8 10 distTarget.filter, 9 11 rcDestination.name AS product_name,
Note:
See TracChangeset
for help on using the changeset viewer.
