@@ -67,7 +67,7 @@ Then, either:
67
67
* Or, if you have already downloaded the box file separately, then run the
68
68
following command in order to import the box into vagrant and boot up the VM:
69
69
70
- (host) $ vagrant box add path/to/django-box-1.11 .box --name djangoproject/django-box-1.11
70
+ (host) $ vagrant box add path/to/django-box-2.0 .box --name djangoproject/django-box-2.0
71
71
(host) $ cd django-box
72
72
(host) $ vagrant up
73
73
@@ -77,10 +77,10 @@ Then, either:
77
77
78
78
You can download the box file directly from (make sure you update the version
79
79
component):
80
- https://atlas.hashicorp.com/djangoproject/boxes/django-box-1.11 /versions/1.11.2 /providers/virtualbox.box
80
+ https://atlas.hashicorp.com/djangoproject/boxes/django-box-2.0 /versions/2.0.0 /providers/virtualbox.box
81
81
82
82
You can check what the latest released version is here:
83
- https://atlas.hashicorp.com/djangoproject/boxes/django-box-1.11 /
83
+ https://atlas.hashicorp.com/djangoproject/boxes/django-box-2.0 /
84
84
85
85
As the VM boots up, it will prompt you to enter your host machine's
86
86
administrator password (the same that you use for logging into your host
@@ -208,7 +208,7 @@ Building a new version
208
208
----------------------
209
209
210
210
To upgrade or alter the original box, you'll need to recreate it. You'll need to
211
- have Ansible 2.1 or greater installed, and django >= 1.11 in a folder beside the
211
+ have Ansible 2.1 or greater installed, and django >= 2.0 in a folder beside the
212
212
django-box project as described above. You should also have
213
213
the [ vagrant-vbguest] ( https://github.com/dotless-de/vagrant-vbguest ) plugin
214
214
installed to ensure the correct GuestAdditions are configured within the image.
@@ -221,9 +221,9 @@ The automatic build process will take about 20 minutes. If the new build should
221
221
be saved, then you can package the output:
222
222
223
223
(host) $ VAGRANT_VAGRANTFILE=Vagrantfile-build vagrant package \
224
- --output django-box-1.11 .box
224
+ --output django-box-2.0 .box
225
225
226
- (host) $ vagrant box add django-box-1.11 .box --name djangoproject/django-box-1.11 # optional - for testing
226
+ (host) $ vagrant box add django-box-2.0 .box --name djangoproject/django-box-2.0 # optional - for testing
227
227
228
228
Note that compiling a new version should only be required when releasing a new
229
229
build to atlas.hashicorp.com.
0 commit comments