无效的 vagrant 选项
Invalid vagrant options
我用的是vagrant。我想在恢复 vagrant 快照时修改配置行为。根据this web page,我应该可以使用选项
--[no-]provision
当我尝试 运行 这个选项时,我的流浪者抱怨我提供了一个无效的参数。当我查看版本时,它说我正在使用最新版本。
$ vagrant snapshot list
my_snapshot1
my_snapshot2
$ vagrant snapshot restore --no-provision my_snapshot2
An invalid option was specified. The help for this command
is available below.
Usage: vagrant snapshot restore [options] [vm-name] <name>
Restore a snapshot taken previously with snapshot save.
-h, --help Print this help
$ vagrant --version
Vagrant 1.8.1
我做错了什么?当我 运行 它没有那个选项时,它恢复快照就好了。还尝试更改参数的顺序。
当 运行 vagrant restore
时,有一个 known issue which has been fixed 允许 --no-provision
选项
这将在 vagrant 的下一个版本中推出,但您也可以从 github 构建,因为它已合并到核心中。
我用的是vagrant。我想在恢复 vagrant 快照时修改配置行为。根据this web page,我应该可以使用选项
--[no-]provision
当我尝试 运行 这个选项时,我的流浪者抱怨我提供了一个无效的参数。当我查看版本时,它说我正在使用最新版本。
$ vagrant snapshot list
my_snapshot1
my_snapshot2
$ vagrant snapshot restore --no-provision my_snapshot2
An invalid option was specified. The help for this command
is available below.
Usage: vagrant snapshot restore [options] [vm-name] <name>
Restore a snapshot taken previously with snapshot save.
-h, --help Print this help
$ vagrant --version
Vagrant 1.8.1
我做错了什么?当我 运行 它没有那个选项时,它恢复快照就好了。还尝试更改参数的顺序。
当 运行 vagrant restore
--no-provision
选项
这将在 vagrant 的下一个版本中推出,但您也可以从 github 构建,因为它已合并到核心中。