From 951e93435db224d2a0c62f8889e33c5b13521f52 Mon Sep 17 00:00:00 2001
From: Ladar Levison <ladar@lavabit.com>
Date: Wed, 19 Dec 2018 23:36:41 -0600
Subject: [PATCH] Replace Atlas with Vagrant Cloud.

---
 README.md    | 8 ++++----
 local.json   | 2 +-
 vagrant.json | 8 ++++----
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/README.md b/README.md
index 78ed6d6..7a2228c 100644
--- a/README.md
+++ b/README.md
@@ -29,10 +29,10 @@ Here is an overview over all variables you can set in `vagrant.json` or
 * `memory`: this specifies the size of the RAM in bytes.
 * `cpus`: this specifies the number of cores for your VM.
 * `headless`: this sets GUI on or off.
-* `atlas_token`: here you can specify the atlas token for uploading your
-  box to the vagrantcloud. If you don't have any atlas token you can
-  ignore this variable. But then don't be suprised when the process
-  fails. The boxes are build, they just haven't been uploaded.
+* `vagrant_cloud_token`: here you can specify the vagrant cloud token for 
+  uploading your box to the vagrantcloud. If you don't have a vagrant cloud 
+  token you can ignore this variable. Without a token the boxes will be
+  built, but the upload step step will fail.
 * `write_zeroes`: this variable is empty. if you set any string in this
   variable it will fill the box with zeros to reduce the size. **DO NOT
   use this if you are running a SSD. It will harm your SSDs lifetime**
diff --git a/local.json b/local.json
index cb70558..5f6f671 100644
--- a/local.json
+++ b/local.json
@@ -6,7 +6,7 @@
     "memory": "1024",
     "cpus": "2",
     "headless": "true",
-    "atlas_token": "PLACEHOLDER",
+    "vagrant_cloud_token": "PLACEHOLDER",
     "write_zeroes": "",
     "boot_wait": "60s"
 
diff --git a/vagrant.json b/vagrant.json
index 431d74b..9a90bde 100644
--- a/vagrant.json
+++ b/vagrant.json
@@ -7,7 +7,7 @@
         "memory": "1024",
         "cpus": "2",
         "headless": "true",
-        "atlas_token": "PLACEHOLDER",
+        "vagrant_cloud_token": "PLACEHOLDER",
         "write_zeroes": "",
         "boot_wait": "60s"
     },
@@ -148,21 +148,21 @@
             {
                 "type": "vagrant-cloud",
                 "only": ["virtualbox-iso"],
-                "access_token": "{{user `atlas_token`}}",
+                "access_token": "{{user `vagrant_cloud_token`}}",
                 "box_tag": "archlinux/archlinux",
                 "version": "{{isotime \"2006.01.02\"}}"
             },
             {
                 "type": "vagrant-cloud",
                 "only": ["qemu"],
-                "access_token": "{{user `atlas_token`}}",
+                "access_token": "{{user `vagrant_cloud_token`}}",
                 "box_tag": "archlinux/archlinux",
                 "version": "{{isotime \"2006.01.02\"}}"
             },
             {
                 "type": "vagrant-cloud",
                 "only": ["vmware-iso"],
-                "access_token": "{{user `atlas_token`}}",
+                "access_token": "{{user `vagrant_cloud_token`}}",
                 "box_tag": "archlinux/archlinux",
                 "version": "{{isotime \"2006.01.02\"}}"
             }
-- 
GitLab