summaryrefslogtreecommitdiffstats
path: root/perl-install/do_resize_fat
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2001-09-05 12:55:06 +0000
committerMystery Man <unknown@mandriva.org>2001-09-05 12:55:06 +0000
commitec7d8bfda214073d222fcadfa1ac9d3ed884ea87 (patch)
treed17c669ffaea9eae8bbc6b1b82b6164e75c6c42d /perl-install/do_resize_fat
parentd2428470c34f096821615c7f119775b03aa86253 (diff)
downloaddrakx-V_9mdk.tar
drakx-V_9mdk.tar.gz
drakx-V_9mdk.tar.bz2
drakx-V_9mdk.tar.xz
drakx-V_9mdk.zip
This commit was manufactured by cvs2svn to create tag 'V_9mdk'.V_9mdk
Diffstat (limited to 'perl-install/do_resize_fat')
-rwxr-xr-xperl-install/do_resize_fat18
1 files changed, 0 insertions, 18 deletions
diff --git a/perl-install/do_resize_fat b/perl-install/do_resize_fat
deleted file mode 100755
index 41ebf1b83..000000000
--- a/perl-install/do_resize_fat
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/perl
-
-use diagnostics;
-use strict;
-
-use lib qw(/usr/lib/libDrakX);
-use common;
-use resize_fat::main;
-
-local *log::l = sub { print join(' ', @_), "\n" };
-
-@ARGV = qw(/mnt/iso/w +0);
-
-@ARGV == 2 or die "usage: fatresize <device> <size>\n <size> = 100 means `resize to 100Mb'\n <size> = +10 means `keep 10Mb of free space'\n";
-
-my $fs = new resize_fat::main(common::basename($ARGV[0]), $ARGV[0]);
-resize_fat::main::resize($fs, $ARGV[1]);
-