Ignore:
Timestamp:
03/21/16 15:55:15 (8 years ago)
Author:
labetoulle
Message:
  • Run everything (DB inserts + plots) from single bash script
  • Change exit codes (unsigned in bash, so no negative values...) :
    • 0: everything was ok;
    • 1: nothing done, 'cause nothing to do => ok;
    • >= 2: error.
  • DB access now needs password
  • plot_bilan: added date of production and plotted range to image
  • Cleaning (useless comments, ...)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TOOLS/ConsoGENCI/trunk/bin/init_alloc_tbl.py

    r2776 r2783  
    4545      "machine": "curie", 
    4646      "node": "thin/standard", 
    47       "alloc": 15000000, 
     47      "alloc": 10000000, 
    4848      "start": "2015-07-01 00:00:00", 
    4949      "end": "2015-12-31 23:59:59", 
     
    117117    db_data.db_host, 
    118118    db_data.db_name, 
    119     db_data.db_user 
     119    db_data.db_user, 
     120    db_data.db_pwd, 
    120121  ) 
    121122 
     
    160161 
    161162  cdb.close_db(conn) 
     163 
     164  exit(0) 
Note: See TracChangeset for help on using the changeset viewer.