From: Florian Forster Date: Sat, 23 Apr 2011 15:31:08 +0000 (-0700) Subject: contrib/migrate-4-5.px: Remove useless "OutDir" option. X-Git-Tag: collectd-5.0.1~12 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=57b6a7ec7693cf8f111d9d4ab486eb5509c99836 contrib/migrate-4-5.px: Remove useless "OutDir" option. --- diff --git a/contrib/migrate-4-5.px b/contrib/migrate-4-5.px index 1e54683a..0e6f7b2f 100755 --- a/contrib/migrate-4-5.px +++ b/contrib/migrate-4-5.px @@ -32,7 +32,6 @@ use Data::Dumper (); use File::Basename ('dirname'); our $InDir = '/var/lib/collectd'; -our $OutDir = '/tmp/collectd-5'; our $RRDtool = 'rrdtool'; our %TypesCounterToDerive = # {{{ @@ -226,8 +225,6 @@ Valid options are: --indir Source directory Default: $InDir - --outdir Destination directory - Default: $OutDir --rrdtool Path to the RRDtool binary Default: $RRDtool @@ -236,7 +233,6 @@ EOF } # }}} sub exit_usage GetOptions ("indir|i=s" => \$InDir, - "outdir|o=s" => \$OutDir, "rrdtool=s" => \$RRDtool, "help|h" => \&exit_usage) or exit_usage ();