0

我尝试在 hosts.allow 中创建一个新条目

 augeas { "Add in hosts allow" : 
        context => '/files/etc/hosts.allow',
        changes => [
        'ins 01 after *[last()]',
        'set 01/process[1] ssh',
        'set 01/process[2] ssh2',
        'set 01/client ipaddr'
      ],
  }

但它不起作用我得到这个错误

Notice: Compiled catalog for server.local in environment production in 0.96 seconds
Error: /Stage[main]/Nfs::Server/Augeas[Add in hosts allow]: Could not evaluate: Error sending    
command 'ins' with params ["01", "after", "/files/etc/hosts.allow/*[last()]"]/Error sending 
command 'ins' with params ["01", "after", "/files/etc/hosts.allow/*[last()]"]

我看不到如何使用 ins 命令,消息不要让我知道出了什么问题。

CentOS6.4

木偶版:3.3.1

augeasversion(来自事实):0.9.0

我找不到 augtools 的版本,也无法执行命令,因为它没有安装(我不知道 puppet 是如何调用它的)

4

1 回答 1

1

尝试在上下文中添加前导“/”?

(日志记录有点奇怪,它根本不显示“文件”前缀,我想知道您的代码示例和日志记录是否匹配。)

于 2015-01-15T08:54:09.483 回答