X-Git-Url: https://defaria.com/gitweb/?a=blobdiff_plain;f=clearadm%2Flib%2Fload.sql;h=a6efa48be00295677efc3471260a150a81bddfe1;hb=7ddf095f187ca60d9a70fb83b2bc3c2b6d91f088;hp=4c005f40edcdf76aa251c8f1971a5653ea41fd8e;hpb=8d581bb27075abec5dca50adea1174494335f4cd;p=clearscm.git diff --git a/clearadm/lib/load.sql b/clearadm/lib/load.sql index 4c005f4..a6efa48 100644 --- a/clearadm/lib/load.sql +++ b/clearadm/lib/load.sql @@ -69,6 +69,18 @@ insert into notification ( 'Once a day' ); +insert into notification ( + name, + alert, + cond, + nomorethan +) values ( + 'Clearcase Storage', + 'Email admin', + 'Clearcase Failure', + 'Once a day' +); + insert into notification ( name, alert, @@ -101,7 +113,7 @@ insert into task ( command ) values ( 'Loadavg', - 'Localhost', + 'localhost', 'Obtain a loadavg snapshot on all systems', 'updatela.pl' ); @@ -113,7 +125,7 @@ insert into task ( command ) values ( 'Filesystem', - 'Localhost', + 'localhost', 'Obtain a filesystem snapshot on all systems/filesystems', 'updatefs.pl' ); @@ -125,7 +137,7 @@ insert into task ( command ) values ( 'Scrub', - 'Localhost', + 'localhost', 'Scrub Clearadm database', 'clearadmscrub.pl' ); @@ -137,7 +149,7 @@ insert into task ( command ) values ( 'System checkin', - 'Localhost', + 'localhost', 'Checkin from all systems', 'default' ); @@ -149,11 +161,23 @@ insert into task ( command ) values ( 'Update systems', - 'Localhost', + 'localhost', 'Update all systems', 'updatesystem.pl -host all' ); +insert into task ( + name, + system, + description, + command +) values ( + 'Clearcase Storage', + 'localhost', + 'Update Clearcase VOB/View storage', + 'updateccfs.pl' +); + -- Predefined schedule insert into schedule ( name, @@ -190,3 +214,17 @@ insert into schedule ( 'Scrub', '1 day' ); + +insert into schedule ( + name, + task, + notification, + frequency +) values ( + 'Clearcase Storage', + 'Clearcase Storage', + 'Clearcase Storage', + '1 day' +); + +