augeas的示例文件



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

所以,我几乎被困在这里了。谷歌搜索并没有给我提供任何信息,所以我希望能在这里找到答案。感谢

canonical节点对于带有Hosts.lns镜头的hosts条目是强制性的,因此您需要:

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

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

相关内容

  • 没有找到相关文章

最新更新