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
1f9de0c0
Commit
1f9de0c0
authored
Feb 05, 2014
by
jctanner
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5187 from 42wim/devel
Add support for --copy-links in synchronize
parents
716b5f0c
06576fed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
library/files/synchronize
+12
-0
No files found.
library/files/synchronize
View file @
1f9de0c0
...
...
@@ -75,6 +75,12 @@ options:
choices: [ 'yes', 'no' ]
default: the value of the archive option
required: false
copy_links:
description:
- Copy symlinks as the item that they point to (the referent) is copied, rather than the symlink.
choices: [ 'yes', 'no' ]
default: 'no'
required: false
perms:
description:
- Preserve permissions.
...
...
@@ -163,6 +169,7 @@ def main():
dirs
=
dict
(
default
=
'no'
,
type
=
'bool'
),
recursive
=
dict
(
type
=
'bool'
),
links
=
dict
(
type
=
'bool'
),
copy_links
=
dict
(
type
=
'bool'
),
perms
=
dict
(
type
=
'bool'
),
times
=
dict
(
type
=
'bool'
),
owner
=
dict
(
type
=
'bool'
),
...
...
@@ -185,6 +192,7 @@ def main():
# the default of these params depends on the value of archive
recursive
=
module
.
params
[
'recursive'
]
links
=
module
.
params
[
'links'
]
copy_links
=
module
.
params
[
'copy_links'
]
perms
=
module
.
params
[
'perms'
]
times
=
module
.
params
[
'times'
]
owner
=
module
.
params
[
'owner'
]
...
...
@@ -201,6 +209,8 @@ def main():
cmd
=
cmd
+
' --no-recursive'
if
links
is
False
:
cmd
=
cmd
+
' --no-links'
if
copy_links
is
True
:
cmd
=
cmd
+
' --copy-links'
if
perms
is
False
:
cmd
=
cmd
+
' --no-perms'
if
times
is
False
:
...
...
@@ -214,6 +224,8 @@ def main():
cmd
=
cmd
+
' --recursive'
if
links
is
True
:
cmd
=
cmd
+
' --links'
if
copy_links
is
True
:
cmd
=
cmd
+
' --copy-links'
if
perms
is
True
:
cmd
=
cmd
+
' --perms'
if
times
is
True
:
...
...
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