$darkmode
Elektra 0.11.0
|
This is a plugin for reading and writing configuration files with help from Augeas. The plugin should be able to read all configuration files for which an Augeas lens exists. However, not all stock lenses of Augeas have been tested yet. A detailed description of the lens language and a tutorial on how to write new lenses can be found at http://augeas.net/
libaugeas-dev
: You need version 0.16 or higherSee installation. The package is called libelektra5-augeas
.
If you have installed Augeas manually, it may be necessary to update the ld configuration. This is especially true if an older version of Augeas is installed also. Such a situation may lead to an error similar to this:
This is because ld
tries to link /usr/lib/libaugeas.so.0
which is an older version of Augeas. Simply add the path to the newer library to your ld search paths (consult your system documentation on how to do this).
In order to mount the hosts file with the augeas plugin, issue the following command:
And to unmount the file run:
The value of the plugin configuration option "lens" should be the module name of the lens (Hosts in the example) with a '.lns' suffix. Depending on your distribution and kind of installation, lenses can be found at /usr/share/augeas/lenses/dist
, /usr/local/share/augeas/lenses/dist
, or something similar. The lens module name is equal to the filename without extension in pascal notation. For example, the lens /usr/share/augeas/lenses/dist/hosts.aug
contains the module Hosts.
Note that, without configuring the plugin to use a lens, the plugin will print an error message on the first usage:
This happens because the plugin does not know which lens it should use to read and write the configuration. For that reason, the lens configuration option was supplied together with the mount command.
And again to unmount the hosts
file simply run:
Currently no Augeas lens supports values for inner nodes. Unfortunately no validation plugin exists yet that would prevent such modifications early:
The operation simply fails with an undescriptive error.
Finally, to unmount the hosts
file simply run:
Most Augeas lenses require subtrees to be in a specific order. For example the hosts lens requires the ipaddr node of an entry to precede the canonical node. Unfortunately the Augeas storage plugin has no knowledge about this required order. Therefore the correct order must be ensured via order metakeys. Otherwise saving the KeySet may fail. As an example consider the following kdb shell script:
This fails with an error similar to this
Whereas the following script succeeds due to the correct order