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
5d8c9d3f
Commit
5d8c9d3f
authored
Mar 17, 2014
by
James Cammarata
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'file_fixes_clean' of
https://github.com/bcoca/ansible
into bcoca-file_fixes_clean
parents
7edee91a
2d25577e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
15 deletions
+25
-15
lib/ansible/module_utils/basic.py
+6
-15
library/files/file
+0
-0
test/integration/roles/test_file/tasks/main.yml
+19
-0
No files found.
lib/ansible/module_utils/basic.py
View file @
5d8c9d3f
...
@@ -464,7 +464,7 @@ class AnsibleModule(object):
...
@@ -464,7 +464,7 @@ class AnsibleModule(object):
changed
=
True
changed
=
True
return
changed
return
changed
def
set_f
ile
_attributes_if_different
(
self
,
file_args
,
changed
):
def
set_f
s
_attributes_if_different
(
self
,
file_args
,
changed
):
# set modes owners and context as needed
# set modes owners and context as needed
changed
=
self
.
set_context_if_different
(
changed
=
self
.
set_context_if_different
(
file_args
[
'path'
],
file_args
[
'secontext'
],
changed
file_args
[
'path'
],
file_args
[
'secontext'
],
changed
...
@@ -481,19 +481,10 @@ class AnsibleModule(object):
...
@@ -481,19 +481,10 @@ class AnsibleModule(object):
return
changed
return
changed
def
set_directory_attributes_if_different
(
self
,
file_args
,
changed
):
def
set_directory_attributes_if_different
(
self
,
file_args
,
changed
):
changed
=
self
.
set_context_if_different
(
return
self
.
set_fs_attributes_if_different
(
file_args
,
changed
)
file_args
[
'path'
],
file_args
[
'secontext'
],
changed
)
def
set_file_attributes_if_different
(
self
,
file_args
,
changed
):
changed
=
self
.
set_owner_if_different
(
return
self
.
set_fs_attributes_if_different
(
file_args
,
changed
)
file_args
[
'path'
],
file_args
[
'owner'
],
changed
)
changed
=
self
.
set_group_if_different
(
file_args
[
'path'
],
file_args
[
'group'
],
changed
)
changed
=
self
.
set_mode_if_different
(
file_args
[
'path'
],
file_args
[
'mode'
],
changed
)
return
changed
def
add_path_info
(
self
,
kwargs
):
def
add_path_info
(
self
,
kwargs
):
'''
'''
...
@@ -963,7 +954,7 @@ class AnsibleModule(object):
...
@@ -963,7 +954,7 @@ class AnsibleModule(object):
context
=
self
.
selinux_default_context
(
dest
)
context
=
self
.
selinux_default_context
(
dest
)
try
:
try
:
# Optimistically try a rename, solves some corner cases and can avoid useless work.
# Optimistically try a rename, solves some corner cases and can avoid useless work
, throws exception if not atomic
.
os
.
rename
(
src
,
dest
)
os
.
rename
(
src
,
dest
)
except
(
IOError
,
OSError
),
e
:
except
(
IOError
,
OSError
),
e
:
# only try workarounds for errno 18 (cross device), 1 (not permited) and 13 (permission denied)
# only try workarounds for errno 18 (cross device), 1 (not permited) and 13 (permission denied)
...
...
library/files/file
View file @
5d8c9d3f
This diff is collapsed.
Click to expand it.
test/integration/roles/test_file/tasks/main.yml
View file @
5d8c9d3f
...
@@ -164,5 +164,24 @@
...
@@ -164,5 +164,24 @@
that
:
that
:
-
"
file11_result.uid
==
1235"
-
"
file11_result.uid
==
1235"
-
name
:
fail to create soft link to non existant file
file
:
src=/noneexistant dest={{output_dir}}/soft2.txt state=link force=no
register
:
file12_result
ignore_errors
:
true
-
name
:
verify that link was not created
assert
:
that
:
-
"
file12_result.failed
==
true"
-
name
:
force creation soft link to non existant
file
:
src=/noneexistant dest={{output_dir}}/soft2.txt state=link force=yes
register
:
file13_result
-
name
:
verify that link was created
assert
:
that
:
-
"
file13_result.changed
==
true"
-
name
:
remote directory foobar
-
name
:
remote directory foobar
file
:
path={{output_dir}}/foobar state=absent
file
:
path={{output_dir}}/foobar state=absent
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