系统相关
首页 > 系统相关> > linux – 如何在没有镜头的情况下使用augtool?

linux – 如何在没有镜头的情况下使用augtool?

作者:互联网

augtool Augeas接缝是Puppet修改配置文件的流行程序,但是如何修改augtool没有镜头的配置文件呢?例如.:

[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=Compiz
Exec=compiz
NoDisplay=false
# name of loadable control center module
X-GNOME-WMSettingsModule=metacity

在这个特定的例子中,我想将NoDisplay更改为true.

是否可以在没有镜头的情况下修改配置文件? augtool可以尝试猜测配置文件的树结构吗?

解决方法:

Augeas无法猜出要使用哪种镜头.例如,对于桌面文件(您的示例),可以使用许多镜头(MySQL.lns,PHP.lns等),但是每个镜头都会引入与桌面格式不兼容的限制.

在您的情况下,您想使用Desktop.lns镜头:

$augtool --autosave --noautoload --transform "Desktop.lns incl /path/to/your/example.desktop" set "/files/path/to/your/example.desktop/Desktop Entry/NoDisplay" true

标签:bash,linux,puppet,augeas
来源: https://codeday.me/bug/20190830/1771254.html