40m
QIL
Cryo_Lab
CTN
SUS_Lab
TCS_Lab
OMC_Lab
CRIME_Lab
FEA
ENG_Labs
OptContFac
Mariner
WBEEShop
|
40m Log |
Not logged in |
 |
|
Mon Aug 14 19:41:46 2017, Jamie, Update, CDS, front-end/DAQ network down for kernel upgrade, and timing errors
|
Wed Aug 16 17:05:53 2017, Jamie, Update, CDS, front-end/DAQ network down for kernel upgrade, and timing errors
|
Wed Aug 16 17:14:02 2017, Koji, Update, CDS, front-end/DAQ network down for kernel upgrade, and timing errors
|
Wed Aug 16 18:01:28 2017, Jamie, Update, CDS, front-end/DAQ network down for kernel upgrade, and timing errors
|
Wed Aug 16 18:06:01 2017, Koji, Update, CDS, front-end/DAQ network down for kernel upgrade, and timing errors
|
Wed Aug 16 18:50:58 2017, Jamie, Update, CDS, front-end/DAQ network down for kernel upgrade, and timing errors
|
Mon Aug 28 16:20:00 2017, gautam, Update, CDS, 40m files backup situation
|
Mon Aug 28 17:13:57 2017, ericq, Update, CDS, 40m files backup situation
|
Fri Sep 15 15:54:28 2017, gautam, Update, CDS, FB wiper script
|
Mon Sep 18 17:17:49 2017, gautam, Update, CDS, FB wiper script
|
Mon Sep 18 17:30:54 2017, Chris, Update, CDS, FB wiper script
|
Mon Sep 18 17:51:26 2017, gautam, Update, CDS, FB wiper script
|
Mon Sep 18 18:40:34 2017, gautam, Update, CDS, FB wiper script
|
Tue Sep 26 15:55:20 2017, gautam, Update, CDS, 40m files backup situation
|
Thu Sep 28 10:33:46 2017, gautam, Update, CDS, 40m files backup situation
|
Thu Sep 28 11:13:32 2017, jamie, Update, CDS, 40m files backup situation
|
Thu Sep 28 23:47:38 2017, gautam, Update, CDS, 40m files backup situation
|
Fri Sep 29 11:07:16 2017, gautam, Update, CDS, 40m files backup situation
|
Thu Oct 5 13:58:26 2017, gautam, Update, CDS, 40m files backup situation
|
Fri Oct 6 12:46:17 2017, gautam, Update, CDS, 40m files backup situation
|
Sat Oct 28 00:36:26 2017, gautam, Update, CDS, 40m files backup situation - ddrescue 
|
|
Message ID: 13318
Entry time: Mon Sep 18 17:30:54 2017
In reply to: 13317
Reply to this: 13319
|
Author: |
Chris |
Type: |
Update |
Category: |
CDS |
Subject: |
FB wiper script |
|
|
Attached is the version of the wiper script we use on the CryoLab cymac. It works with perl v5.20.2. Is this different from what you have? |
|
#!/usr/bin/perl
use File::Basename;
print "\n" . `date` . "\n";
# Dry run, do not delete anything
$dry_run = 1;
if ($ARGV[0] eq "--delete") { $dry_run = 0; }
print "Dry run, will not remove any files!!!\n" if $dry_run;
... 184 more lines ...
|