We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If the value is empty or null, go-augeas doesn't works.
But if I used augtool command, I can setting an empty value such as
augtool> ls /files/etc/php.ini/Tidy/tidy.clean_output augtool> print /files/etc/php.ini/Tidy/tidy.clean_output /files/etc/php.ini/Tidy/tidy.clean_output = "Off" augtool> set /files/etc/php.ini/Tidy/tidy.clean_output augtool> save Saved 1 file(s) augtool> print /files/etc/php.ini/Tidy/tidy.clean_output /files/etc/php.ini/Tidy/tidy.clean_output
setting an empty value for tidy.clean_output
tidy.clean_output
But if I used Set(path, value string) this method , it doesn't works
Set(path, value string)
How can I setting an empty value with this method ?
func (a Augeas) Set(path, value string) error { … }
Thanks for your help!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If the value is empty or null, go-augeas doesn't works.
But if I used augtool command, I can setting an empty value
such as
setting an empty value for
tidy.clean_output
But if I used
Set(path, value string)
this method , it doesn't worksHow can I setting an empty value with this method ?
Thanks for your help!
The text was updated successfully, but these errors were encountered: