From db93f6670308e8f7f4a500c801919f2ef77644bb Mon Sep 17 00:00:00 2001 From: Ricardo Pescuma Domenecci Date: Sun, 20 Nov 2022 22:58:47 -0300 Subject: [PATCH] Added xattrs support --- src/PolicyEditor/index.jsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/PolicyEditor/index.jsx b/src/PolicyEditor/index.jsx index 9857faef..e8ca6c58 100644 --- a/src/PolicyEditor/index.jsx +++ b/src/PolicyEditor/index.jsx @@ -159,6 +159,9 @@ export class PolicyEditor extends Component { if (policy.files.ignoreDotFiles) { policy.files.ignoreDotFiles = removeEmpty(policy.files.ignoreDotFiles) } + if (policy.files.ignoreExtendedAttributes) { + policy.files.ignoreExtendedAttributes = removeEmpty(policy.files.ignoreExtendedAttributes) + } } if (policy.compression) { @@ -316,6 +319,11 @@ export class PolicyEditor extends Component { {RequiredBoolean(this, "", "policy.files.noParentDotFiles")} + + + {StringList(this, "policy.files.ignoreExtendedAttributes")} + {EffectiveTextAreaValue(this, "files.ignoreExtendedAttributes")} + {OptionalBoolean(this, null, "policy.files.ignoreCacheDirs", "inherit from parent")}