Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
7df0e525
Commit
7df0e525
authored
Sep 14, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1038 from bcoca/atomic_copy2
Atomic copy2
parents
70777f04
88d1285f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
library/copy
+6
-1
No files found.
library/copy
View file @
7df0e525
...
...
@@ -20,6 +20,7 @@
import
os
import
shutil
import
time
def
main
():
...
...
@@ -64,7 +65,11 @@ def main():
if
backup
:
if
os
.
path
.
exists
(
dest
):
backup_file
=
module
.
backup_local
(
dest
)
shutil
.
copyfile
(
src
,
dest
)
#TODO:pid + epoch should avoid most collisions, hostname/mac for those using nfs?
# might be an issue with exceeding path length
dest_tmp
=
"
%
s.
%
s.
%
s.tmp"
%
(
dest
,
os
.
getpid
(),
time
.
time
())
shutil
.
copyfile
(
src
,
dest_tmp
)
shutil
.
move
(
dest_tmp
,
dest
)
except
shutil
.
Error
:
module
.
fail_json
(
msg
=
"failed to copy:
%
s and
%
s are the same"
%
(
src
,
dest
))
except
IOError
:
...
...
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