Changeset 341
- Timestamp:
- 05/25/06 10:22:37 (3 years ago)
- Location:
- trunk
- Files:
-
- 1 removed
- 3 modified
-
scripts/svnbackup.pl (modified) (3 diffs)
-
scripts/weekly_backup.pl (modified) (1 diff)
-
source/date.h (modified) (1 diff)
-
tsuite/auto/optimal.in (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/svnbackup.pl
r126 r341 18 18 # this now (mid '05) is on thunder 19 19 # on 05 oct 01 free space on cloudy_bk was 664 mb full space 703mb 20 $cdrw_dir = "j:/";20 # $cdrw_dir = "j:/"; 21 21 22 22 # this is the large raid drive on lightning 23 $raid_drive = " r:/usr/gary/backup/cloudy/";23 $raid_drive = "c:/storage/backup/svn/"; 24 24 25 25 # get current time and date … … 27 27 gmtime(time); 28 28 # create name for dump file 29 $dumpfile = "$ year"."$mon"."$mday".".svn" ;29 $dumpfile = "$raid_drive"."$year"."$mon"."$mday".".svn" ; 30 30 31 31 # do the dump into the local file … … 36 36 37 37 # copy it to raid drive 38 copy( "$dumpfile".".gz" , "$raid_drive"."$dumpfile"."gz" );38 #copy( "$dumpfile".".gz" , "$raid_drive"."$dumpfile"."gz" ); 39 39 40 # copy to cd41 copy( "$dumpfile".".gz" , "$cdrw_dir"."$dumpfile.gz" );40 # copy to cd 41 # copy( "$dumpfile".".gz" , "$cdrw_dir"."$dumpfile.gz" ); 42 42 43 unlink( "$dumpfile".".gz" );43 #unlink( "$dumpfile".".gz" ); 44 44 45 45 -
trunk/scripts/weekly_backup.pl
r13 r341 19 19 # on 05 oct 01 free space on cloudy_bk was 664 mb full space 703mb 20 20 $cdrw_dir = "j:/"; 21 # this is the large raid drive on lightning22 $out_dir = " r:/usr/gary/backup/cloudy/";21 # this is the raid drive on cumulus 22 $out_dir = "$c:/storage/backup/cloudy/"; 23 23 24 24 # get current time and date -
trunk/source/date.h
r340 r341 9 9 #define YEAR 106 10 10 #define MONTH 4 11 #define DAY 2 411 #define DAY 25
