我正在用Veewee构建一个虚拟盒子,我希望有一个脚本在新创建的盒子上调用另一个帮助器脚本。
我知道的唯一方法是在postinstall-files
的{{1}}部分提供主脚本和帮助脚本,如下所示:
definition.rb
我的问题是Veewee正在尝试执行所有脚本,包括帮助脚本(我不想要)。
所以我很感兴趣是否有另一种在VM上转换:postinstall_files => [ "main.sh","helper.sh"]
脚本的方法,以便从helper.sh
脚本调用。
答案 0 :(得分:1)
您可以像这样使用veewee build hooks:
Veewee::Definition.declare({
:hooks => {
:before_postinstall => Proc.new { definition.box.scp('/tmp/helper.sh', '/home/veewee/helper.sh') }
}
})