mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +08:00
communishift: fix filesystem permissions on efs storage mount
Signed-off-by: David Kirwan <dkirwan@redhat.com> Signed-off-by: Lenka Segura <lsegura@redhat.com> Signed-off-by: Patrik Polakovic <ppolakov@redhat.com>
This commit is contained in:
@@ -132,15 +132,15 @@ def run_module():
|
||||
{"Key": "Name", "Value": module.params["project_name"]},
|
||||
],
|
||||
FileSystemId=module.params["aws_efs_filesystem_id"],
|
||||
# PosixUser={
|
||||
# "Uid": 50000,
|
||||
# "Gid": 50000,
|
||||
# },
|
||||
PosixUser={
|
||||
"Uid": 1001,
|
||||
"Gid": 1001,
|
||||
},
|
||||
RootDirectory={
|
||||
"Path": "/",
|
||||
"CreationInfo": {
|
||||
"OwnerUid": 1001,
|
||||
"OwnerGid": 1001,
|
||||
"OwnerUid": 0,
|
||||
"OwnerGid": 0,
|
||||
"Permissions": "777",
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user