1

我在玩 puppet 并注意到了这种行为。

# puppet resource file /etc/passwd
file { '/etc/passwd':
  ensure   => 'file',
  content  => '{md5}7a63b133e1a086d9f35c2014b3b09218',
  ctime    => 'Thu Jan 10 17:16:11 -0700 2013',
  group    => '0',
  mode     => '644',
  mtime    => 'Thu Jan 10 17:16:11 -0700 2013',
  owner    => '0',
  selrange => 's0',
  selrole  => 'object_r',
  seltype  => 'etc_t',
  seluser  => 'system_u',
  type     => 'file',
}

对比

# puppet resource file /etc/passwd provider=posix
file { '/etc/passwd':
  ensure   => 'file',
  selrange => 's0',
  selrole  => 'object_r',
  seltype  => 'etc_t',
  seluser  => 'system_u',
}

这是在文件提供程序应该是 POSIX 的 Linux 系统上。为什么明确指定提供者时输出不同?

编辑:添加了命令的特定输出。

4

1 回答 1

1

Puppetlabs 最近建立了他们自己的堆栈交换实例,并在那里回答了这个问题:https ://ask.puppetlabs.com/question/241/why-does-puppet-resource-behave-differently-when-specifying-the-provider /?answer=253#post-id-253

于 2013-01-12T02:53:58.643 回答