From fbf5c705db9d4dbd0e853a08f5ff5cf9d08e2bac Mon Sep 17 00:00:00 2001
From: Joe Ferguson <joe@joeferguson.me>
Date: Tue, 29 Jun 2021 08:12:01 -0500
Subject: [PATCH] Fix APP_ENV/APP_DEBUG typo overwriting the APP_ENV in Vagrant
 Playbook

---
 ansible/ubuntu/vagrant_playbook.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ansible/ubuntu/vagrant_playbook.yml b/ansible/ubuntu/vagrant_playbook.yml
index dd25b2e0c..44b1a6ef0 100755
--- a/ansible/ubuntu/vagrant_playbook.yml
+++ b/ansible/ubuntu/vagrant_playbook.yml
@@ -199,7 +199,7 @@
         - { regexp: '^DB_PASSWORD=', line: 'DB_PASSWORD=vagrant' }
         - { regexp: '^APP_URL=', line: "APP_URL=http://{{ fqdn }}" }
         - { regexp: '^APP_ENV=', line: "APP_ENV=development" }
-        - { regexp: '^APP_DEBUG=', line: "APP_ENV=true" }
+        - { regexp: '^APP_DEBUG=', line: "APP_DEBUG=true" }
     - name: Generate application key
       shell: "php {{ app_path }}/artisan key:generate --force"
     - name: Artisan Migrate
-- 
GitLab