puppet 3.6 两例错误处理

puppet 3.6 安装包的时候警告信息:

 

Warning: The package type's allow_virtual parameter will be changing its default value from false to true in a future release. If you do not want to allow virtual packages, please explicitly set allow_virtual to false.
   (at /usr/lib/ruby/site_ruby/1.8/puppet/type/package.rb:430:in `default')


配置site.pp,添加:

Package {
  allow_virtual => true,
}

错误2:

Error: /File[/var/lib/puppet/facts.d]: Failed to generate additional resources using 'eval_generate': Error 400 on SERVER: Not authorized to call search on /file_metadata/pluginfacts with {:recurse=>true, :checksum_type=>"md5", :ignore=>[".svn", "CVS", ".git"], :links=>"manage"}
Error: /File[/var/lib/puppet/facts.d]: Could not evaluate: Could not retrieve file metadata for puppet://puppet.dadi.com/pluginfacts: Error 400 on SERVER: Not authorized to call find on /file_metadata/pluginfacts with {:source_permissions=>"use", :links=>"manage"}
Wrapped exception:
Error 400 on SERVER: Not authorized to call find on /file_metadata/pluginfacts with {:source_permissions=>"use", :links=>"manage"}

处理:

vi fileserver.conf 
[plugins]
  allow *


你可能感兴趣的:(puppet 3.6 两例错误处理)