mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Moar SELinux.
This commit is contained in:
parent
fb7bfa61a9
commit
c3547a2308
1 changed files with 2 additions and 2 deletions
|
@ -298,7 +298,7 @@ class AnsibleModule(object):
|
||||||
context = ret[1].split(':')
|
context = ret[1].split(':')
|
||||||
return context
|
return context
|
||||||
|
|
||||||
def selinux_context(self, path)
|
def selinux_context(self, path):
|
||||||
context = self.selinux_initial_context()
|
context = self.selinux_initial_context()
|
||||||
if not HAVE_SELINUX or not self.selinux_enabled():
|
if not HAVE_SELINUX or not self.selinux_enabled():
|
||||||
return context
|
return context
|
||||||
|
@ -843,7 +843,7 @@ class AnsibleModule(object):
|
||||||
os.rename(tmp_dest, dest)
|
os.rename(tmp_dest, dest)
|
||||||
if self.selinux_enabled():
|
if self.selinux_enabled():
|
||||||
# rename might not preserve context
|
# rename might not preserve context
|
||||||
self.set_context_if_different(tmp_dest, context, False)
|
self.set_context_if_different(dest, context, False)
|
||||||
rc = True
|
rc = True
|
||||||
except (shutil.Error, OSError, IOError), e:
|
except (shutil.Error, OSError, IOError), e:
|
||||||
cleanup()
|
cleanup()
|
||||||
|
|
Loading…
Reference in a new issue