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
3f4847a3
Commit
3f4847a3
authored
Jan 07, 2013
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1830 from willthames/fix_tilde_path_in_file
Fix behaviour when file handles a path with tilde
parents
4d48daff
4e50478a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
lib/ansible/module_common.py
+5
-2
library/file
+1
-1
No files found.
lib/ansible/module_common.py
View file @
3f4847a3
...
@@ -254,8 +254,11 @@ class AnsibleModule(object):
...
@@ -254,8 +254,11 @@ class AnsibleModule(object):
return context
return context
try:
try:
ret = selinux.lgetfilecon(path)
ret = selinux.lgetfilecon(path)
except:
except OSError, e:
self.fail_json(path=path, msg='failed to retrieve selinux context')
if e.errno == errno.ENOENT:
self.fail_json(path=path, msg='path
%
s does not exist'
%
path)
else:
self.fail_json(path=path, msg='failed to retrieve selinux context')
if ret[0] == -1:
if ret[0] == -1:
return context
return context
context = ret[1].split(':')
context = ret[1].split(':')
...
...
library/file
View file @
3f4847a3
...
@@ -139,7 +139,7 @@ def main():
...
@@ -139,7 +139,7 @@ def main():
params
=
module
.
params
params
=
module
.
params
state
=
params
[
'state'
]
state
=
params
[
'state'
]
pa
th
=
os
.
path
.
expanduser
(
params
[
'path'
])
pa
rams
[
'path'
]
=
path
=
os
.
path
.
expanduser
(
params
[
'path'
])
# source is both the source of a symlink or an informational passing of the src for a template module
# source is both the source of a symlink or an informational passing of the src for a template module
# or copy module, even if this module never uses it, it is needed to key off some things
# or copy module, even if this module never uses it, it is needed to key off some things
...
...
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