我正在使用带有以下木偶文件的librarian-puppet v2.1.0:
mod "team/app",
:git => "git@github.com:myTeam/puppet-repo.git",
:branch => 'weblegacy'当我尝试安装puppet时,我得到了unrecognized options: branch。
在2.1.0版中切换Puppetfile分支的语法是什么
发布于 2019-09-22 20:22:24
下面是什么:
mod "team/app",
:git => "git@github.com:myTeam/puppet-repo.git",
:ref => 'weblegacy'或者,如果要指定版本:
mod "team/app",
:git => "git@github.com:myTeam/puppet-repo.git",
:tag => 'v1.0.0'有关official docs上的Puppetfile语法的详细信息
https://stackoverflow.com/questions/58000352
复制相似问题