chiark / gitweb /
@@ -5,6 +5,7 @@
[chiark-utils.git] / backup / settings.pl
diff --git a/backup/settings.pl b/backup/settings.pl
deleted file mode 100644 (file)
index 0c3752f..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-# configuration, for putting in /etc/chiark-backup
-
-chdir '/var/lib/chiark-backup' or die $!;
-push(@INC,'/usr/lib/chiark-backup');
-$ENV{'PATH'} =~ s,^/usr/lib/chiark-backup,,;
-$ENV{'PATH'}= '/usr/lib/chiark-backup:'.$ENV{'PATH'};
-
-# This sets both blocksizes to 512b. Note that both must be the
-# same if using the zftape floppy tape driver, since that requires
-# blocks to be the right size, but dd with the obs=10k option
-# doesn't pad the final block to the blocksize...
-
-$blocksize= 1;
-$blocksizebytes= 512*$blocksize;
-$softblocksizekb= 1;
-$softblocksizebytes= 1024*$softblocksizekb;
-$tapename= 'st0';
-$tape= "/dev/$tapename";
-$ntape= "/dev/n$tapename";
-1;