From 74f705c921b5375281326cde73ab10048687ece8 Mon Sep 17 00:00:00 2001 From: Mark Dorison Date: Mon, 13 May 2019 10:48:37 -0400 Subject: [PATCH] Removed entity update step. (#16) Revert "Run entity updates on Drupal deploy (#13)" This reverts commit 6520b5c75f2498a7a9039ede86d0ccd9725c09a8. --- defaults/main.yml | 3 --- tasks/main.yml | 11 ----------- 2 files changed, 14 deletions(-) diff --git a/defaults/main.yml b/defaults/main.yml index f78e008..c8de9e8 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -29,9 +29,6 @@ deploydrupal_site_install_config: true # If set to false, drush config-import will not be run as part of deployment. deploydrupal_config_import: true -# If set to false, drush entity-updates will not be run as part of deployment. -deploydrupal_entity_updates: true - # The path the repository should be cloned to. deploydrupal_dir: "/var/www/html" deploydrupal_core_path: "{{ deploydrupal_dir }}/web" diff --git a/tasks/main.yml b/tasks/main.yml index d5b1a84..99998dc 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -133,17 +133,6 @@ when: - not deploydrupal_site_install -- name: run entity updates. - shell: "{{ deploydrupal_drush_path}} entity-updates --yes" - args: - chdir: "{{ deploydrupal_core_path }}/sites/{{ deploydrupal_site_name }}" - register: drush_output - when: - - deploydrupal_entity_updates - -- name: print drush output - debug: var=drush_output.stdout_lines - - name: run npm theme build tasks. shell: "{{ item }}" args: