1

我正在搜索可以传递给 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"

所以,我几乎被困在这里。谷歌搜索没有为我提供任何东西,所以我希望在这里找到答案。谢谢

4

1 回答 1

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

请注意,此更改不是幂等的,它将在每次运行时创建一个新条目。

于 2013-12-11T12:55:45.950 回答