Skip to content

Commit

Permalink
Merge pull request #34 from truenas/mrehan/ix-volumes-acl-force-flag
Browse files Browse the repository at this point in the history
NAS-130171 / 24.10 / Allow force flag for ACLs being applied on ix volumes
  • Loading branch information
Qubad786 authored Jul 26, 2024
2 parents 081f8b2 + cd2b3d4 commit 129a108
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion catalog_reader/questions_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,26 @@
'hidden': True
}
},
ACL_QUESTION[1]
ACL_QUESTION[1],
{
'variable': 'options',
'label': 'ACL Options',
'schema': {
'type': 'dict',
'hidden': True,
'attrs': [
{
'variable': 'force',
'label': 'Force Flag',
'description': 'Enabling `Force` applies ACL even if the path has existing data',
'schema': {
'type': 'boolean',
'default': True,
}
},
],
},
},
]


Expand Down

0 comments on commit 129a108

Please sign in to comment.