Provision
格式:
vagrant provision [vm-name] [--provision-with x,y,z]
针对正在运行的vagrant托管计算机运行任何配置预配置程序。
userdeMacBook-Pro:~ user$ vagrant provision -h Usage: vagrant provision [vm-name] [--provision-with x,y,z] --provision-with x,y,z Enable only certain provisioners, by type or by name. 只启用某预配置程序,通过类型或名字指定 -h, --help Print this help 打印帮助信息
这个命令是快速测试任何提预配置程序的好方法,对于shell脚本、Chef cookbooks或Puppet模块的增量开发尤其有用。你只需对计算机上的预配置脚本进行简单修改,运行vagrant预配置,并检查所需的结果。重复上述步骤( Rinse and repeat)
--provision-with的使用:
比如我们有shell和chef_solo两个预配置程序,运行vagrant provision --provision-with shell则意味着只运行shell这个预配置程序