我在 Vagrant 中有一个 CentOS 基本盒子,我正拿着一个木偶清单站起来。到目前为止,清单中的内容如下:
class base {
exec { "sudocmd":
path => ["/usr/bin/","/usr/sbin/","/bin"],
command => "sudo yum update -y",
}
package { "man":
ensure => present,
}
package { "bind":
ensure => present,
}
package { "bind-utils":
ensure => present,
}
}
include base
但是当我说 时vagrant up
,我收到一个错误,sudocmdyum update
以 1 退出。我在网上查看过,但我还没有找到解决方案。有什么帮助吗?
========EDIT========= 我阅读了答案并同意-谢谢大家。我只是在开发盒上使用它来搞乱,我需要它是最新的,然后才开始研究它。