Changeset 983 for LATMOS-Accounts/bin


Ignore:
Timestamp:
05/17/12 09:58:27 (12 years ago)
Author:
nanardon
Message:
  • add task module to validate automated request
Location:
LATMOS-Accounts/bin
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • LATMOS-Accounts/bin/la-sql-upgrade.in

    r981 r983  
    180180            delete from accreq_attributes_list 
    181181            } 
     182        ], 
     183    }, 
     184    { 
     185        ver => 7, 
     186        sql => [ 
     187            q{ 
     188            ALTER TABLE request ADD COLUMN automated boolean NOT NULL DEFAULT false; 
     189            }, 
     190            q{ 
     191            ALTER TABLE request ADD COLUMN objrev bigint; 
     192            }, 
    182193        ], 
    183194    }, 
  • LATMOS-Accounts/bin/la-sync-manager

    r915 r983  
    1717    'test'         => \my $test, 
    1818    'wait=i'       => \my $wait, 
    19     'r|run=s'      => \my $run, 
    2019) or pod2usage(); 
    2120 
     
    2827    exit(1); 
    2928}; 
    30  
    31 if ($run) { 
    32     my $res = $syncm->process_module($run); 
    33     exit($res ? 0 : 1); 
    34 } 
    3529 
    3630la_set_log( 
Note: See TracChangeset for help on using the changeset viewer.