summaryrefslogtreecommitdiff
path: root/databases/percona55-server/files/patch-scripts::mysqlhotcopy.sh
diff options
context:
space:
mode:
authorAlex Dupre <ale@FreeBSD.org>2004-10-24 21:28:03 +0000
committerAlex Dupre <ale@FreeBSD.org>2004-10-24 21:28:03 +0000
commitde3c556dbf1bb252fe803b74d965b251c10e6128 (patch)
tree5d5ce54649267411f5ad9e52feef1a70ecf599ef /databases/percona55-server/files/patch-scripts::mysqlhotcopy.sh
parentc4e6a1c66cd99ff3d5091c24721009d90c65f720 (diff)
downloadfreebsd-ports-de3c556dbf1bb252fe803b74d965b251c10e6128.zip
Update to 5.0.1 (snapshot) release:
- Unmark FORBIDDEN - Install a rcNG startup script - Enable support for ndbcluster - Add knob to use process scope threads
Diffstat (limited to 'databases/percona55-server/files/patch-scripts::mysqlhotcopy.sh')
-rw-r--r--databases/percona55-server/files/patch-scripts::mysqlhotcopy.sh49
1 files changed, 0 insertions, 49 deletions
diff --git a/databases/percona55-server/files/patch-scripts::mysqlhotcopy.sh b/databases/percona55-server/files/patch-scripts::mysqlhotcopy.sh
deleted file mode 100644
index 19d4395fa09f..000000000000
--- a/databases/percona55-server/files/patch-scripts::mysqlhotcopy.sh
+++ /dev/null
@@ -1,49 +0,0 @@
---- scripts/mysqlhotcopy.sh.orig Sun Dec 21 19:01:29 2003
-+++ scripts/mysqlhotcopy.sh Thu Sep 23 11:02:45 2004
-@@ -7,6 +7,7 @@
- use File::Path;
- use DBI;
- use Sys::Hostname;
-+use File::Temp;
-
- =head1 NAME
-
-@@ -607,7 +608,6 @@
- sub copy_index
- {
- my ($method, $files, $source, $target) = @_;
-- my $tmpfile="$opt_tmpdir/mysqlhotcopy$$";
-
- print "Copying indices for ".@$files." files...\n" unless $opt{quiet};
- foreach my $file (@$files)
-@@ -633,23 +633,23 @@
- }
- close OUTPUT || die "Error on close of $to: $!\n";
- }
-- elsif ($opt{method} eq 'scp')
-+ elsif ($opt{method} =~ /^scp\b/)
- {
-- my $tmp=$tmpfile;
-- open(OUTPUT,">$tmp") || die "Can\'t create file $tmp: $!\n";
-- if (syswrite(OUTPUT,$buff) != length($buff))
-+ my ($fh, $tmp)=tempfile('mysqlhotcopy-XXXXXX', DIR => $opt_tmpdir);
-+ die "Can\'t create/open file in $opt_tmpdir\n";
-+ if (syswrite($fh,$buff) != length($buff))
- {
- die "Error when writing data to $tmp: $!\n";
- }
-- close OUTPUT || die "Error on close of $tmp: $!\n";
-- safe_system("scp $tmp $to");
-+ close $fh || die "Error on close of $tmp: $!\n";
-+ safe_system("$opt{method} $tmp $to");
-+ unlink $tmp;
- }
- else
- {
- die "Can't use unsupported method '$opt{method}'\n";
- }
- }
-- unlink "$tmpfile" if ($opt{method} eq 'scp');
- }
-
-