我正在搜索可以传递给augeas的文件示例:
augeas --f example/file
到目前为止,我的文件看起来像这样:
set /files/etc/hosts/01/ipaddr 127.0.2.1
set /files/etc/hosts/01/alias[1] testy
set /files/etc/hosts/01/alias[2] test
save
如果我将文件传递给augeas,它会告诉我:
error: Failed to execute command
saving failed (run 'print /augeas//error' for details)
显然,我做了命令行告诉我的事情:
janipav@janipav:~$ print /augeas//error
Warning: unknown mime-type for "/augeas//error" -- using "application/octet-stream"
Error: no such file "/augeas//error"
所以,我几乎被困在这里。谷歌搜索没有提供任何东西,所以我希望在这里找到答案。感谢
答案 0 :(得分:1)
具有canonical
镜头的hosts
条目必须使用Hosts.lns
节点,因此您需要:
set /files/etc/hosts/01/ipaddr 127.0.2.1
set /files/etc/hosts/01/canonical localhost2
set /files/etc/hosts/01/alias[1] testy
set /files/etc/hosts/01/alias[2] test
save
请注意,此更改不是幂等的,它会在每次运行时创建一个新条目。