Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
d3b44583
Commit
d3b44583
authored
Jul 10, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-4.0/
into serg.mylan:/usr/home/serg/Abk/mysql-4.0
parents
ee989016
2b1233c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
scripts/mysqlhotcopy.sh
scripts/mysqlhotcopy.sh
+8
-8
No files found.
scripts/mysqlhotcopy.sh
View file @
d3b44583
...
@@ -8,6 +8,7 @@ use File::Path;
...
@@ -8,6 +8,7 @@ use File::Path;
use DBI
;
use DBI
;
use Sys::Hostname
;
use Sys::Hostname
;
use File::Copy
;
use File::Copy
;
use File::Temp
;
=
head1 NAME
=
head1 NAME
...
@@ -626,7 +627,6 @@ sub copy_files {
...
@@ -626,7 +627,6 @@ sub copy_files {
sub copy_index
sub copy_index
{
{
my
(
$method
,
$files
,
$source
,
$target
)
=
@_
;
my
(
$method
,
$files
,
$source
,
$target
)
=
@_
;
my
$tmpfile
=
"
$opt_tmpdir
/mysqlhotcopy
$$
"
;
print
"Copying indices for "
.@
$files
.
" files...
\n
"
unless
$opt
{
quiet
}
;
print
"Copying indices for "
.@
$files
.
" files...
\n
"
unless
$opt
{
quiet
}
;
foreach my
$file
(
@
$files
)
foreach my
$file
(
@
$files
)
...
@@ -652,23 +652,23 @@ sub copy_index
...
@@ -652,23 +652,23 @@ sub copy_index
}
}
close OUTPUT
||
die
"Error on close of
$to
:
$!
\n
"
;
close OUTPUT
||
die
"Error on close of
$to
:
$!
\n
"
;
}
}
elsif
(
$opt
{
method
}
eq
'scp'
)
elsif
(
$opt
{
method
}
=
~ /^scp
\b
/
)
{
{
my
$tmp
=
$tmpfile
;
my
(
$fh
,
$tmp
)=
tempfile
(
'mysqlhotcopy-XXXXXX'
, DIR
=>
$opt_tmpdir
)
;
open
(
OUTPUT,
">
$tmp
"
)
||
die
"Can
\'
t create file
$tmp
:
$!
\n
"
;
die
"Can
\'
t create/open file in
$opt_tmpdir
\n
"
;
if
(
syswrite
(
OUTPUT
,
$buff
)
!=
length
(
$buff
))
if
(
syswrite
(
$fh
,
$buff
)
!=
length
(
$buff
))
{
{
die
"Error when writing data to
$tmp
:
$!
\n
"
;
die
"Error when writing data to
$tmp
:
$!
\n
"
;
}
}
close OUTPUT
||
die
"Error on close of
$tmp
:
$!
\n
"
;
close
$fh
||
die
"Error on close of
$tmp
:
$!
\n
"
;
safe_system
(
"scp
$tmp
$to
"
)
;
safe_system
(
"
$opt
{method}
$tmp
$to
"
)
;
unlink
$tmp
;
}
}
else
else
{
{
die
"Can't use unsupported method '
$opt
{method}'
\n
"
;
die
"Can't use unsupported method '
$opt
{method}'
\n
"
;
}
}
}
}
unlink
"
$tmpfile
"
if
(
$opt
{
method
}
eq
'scp'
)
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment