core: give users chance to quit for upgrade [GH-3212]
This commit is contained in:
parent
7f9d98c922
commit
e748aadf4f
|
@ -2,6 +2,7 @@
|
|||
|
||||
IMPROVEMENTS:
|
||||
|
||||
- core: 1.5 upgrade code gives users a chance to quit. [GH-3212]
|
||||
- commands/rsync-auto: An initial sync is done before watching folders. [GH-3327]
|
||||
|
||||
BUG FIXES:
|
||||
|
|
|
@ -648,7 +648,7 @@ module Vagrant
|
|||
# This upgrades a home directory that was in the v1.1 format to the
|
||||
# v1.5 format. It will raise exceptions if anything fails.
|
||||
def upgrade_home_path_v1_1
|
||||
@ui.output(I18n.t("vagrant.upgrading_home_path_v1_5"))
|
||||
@ui.ask(I18n.t("vagrant.upgrading_home_path_v1_5"))
|
||||
collection = BoxCollection.new(
|
||||
@home_path.join("boxes"), temp_dir_root: tmp_path)
|
||||
collection.upgrade_v1_1_v1_5
|
||||
|
|
|
@ -193,6 +193,10 @@ en:
|
|||
amount of disk space. After it is done upgrading, the temporary disk
|
||||
space will be freed.
|
||||
|
||||
Press ctrl-c now to exit if you want to remove some boxes or free
|
||||
up some disk space.
|
||||
|
||||
Press any other key to continue.
|
||||
cfengine_config:
|
||||
classes_array: |-
|
||||
The 'classes' configuration must be an array.
|
||||
|
|
Loading…
Reference in New Issue