Bug 867783
Summary: | The fstab lens doesn't accept all nfs4 options | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Renich Bon Ciric <renich> |
Component: | augeas | Assignee: | David Lutterkort <lutter> |
Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | 17 | CC: | apevec, dcleal, hbrock, lutter, mbooth |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2012-10-22 08:53:30 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Renich Bon Ciric
2012-10-18 09:44:33 UTC
The problem is in the format of the tree you're trying to save. I find the easiest way to find how it should be set up if you're unsure is to edit the file by hand and then "print" from augtool. These two options should be represented as two nodes - the first for the option name and then a sub-node with the value, rather than a concatenation of the key and value within a single node. set /files/etc/fstab/01/opt[5] "rsize=524288" set /files/etc/fstab/01/opt[6] "wsize=524288" Try this instead: set /files/etc/fstab/01/opt[5] rsize set /files/etc/fstab/01/opt[5]/value 524288 set /files/etc/fstab/01/opt[6] wsize set /files/etc/fstab/01/opt[6]/value 524288" |