-
Notifications
You must be signed in to change notification settings - Fork 51
Pulling in changes for 8.7, setting config, and clearing cache afterwards #118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
bd771c7
Pulling in changes for 8.7, setting config, and clearing cache afterw…
dannylamb 008175e
Update post-install.yml
dannylamb d4c4b73
Update post-install.yml
dannylamb dc0b485
Un-derping
dannylamb 5944161
Update drupal.yml
dannylamb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,17 +12,9 @@ | |
# Some tomfoolery to get the demo module to install. | ||
# Subject to https://www.drupal.org/node/2599228 | ||
# Should be fixed in Drupal 8.7 | ||
- name: Install islandora_defaults module (fail ok) | ||
- name: Install islandora_defaults module | ||
command: "{{ drush_path }} --root {{ drupal_core_path }} -y en islandora_defaults" | ||
ignore_errors: yes | ||
- name: Update entities | ||
command: "{{ drush_path }} --root {{ drupal_core_path }} -y entity:updates" | ||
- name: Uninstall islandora_defaults module | ||
command: "{{ drush_path }} --root {{ drupal_core_path }} -y pmu islandora_defaults" | ||
- name: Install islandora_defaults module (should not fail) | ||
command: "{{ drush_path }} --root {{ drupal_core_path }} -y en islandora_defaults" | ||
- name: Import feature | ||
command: "{{ drush_path }} --root {{ drupal_core_path }} -y fim --bundle=islandora islandora_defaults" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Re: @seth-shaw-unlv's comments I also got the same behaviour. I re-added this "Import feature" and everything seemed to come up hunky-dorry. |
||
- name: Add admin to fedoraAdmin role | ||
command: "{{ drush_path }} --root {{ drupal_core_path }} -y urol fedoraadmin admin" | ||
- name: Install islandora_search | ||
|
@@ -39,6 +31,9 @@ | |
command: "{{ drush_path }} --root {{ drupal_core_path }} -y cset --input-format=yaml islandora.settings gemini_pseudo_bundles.{{ item.0 }} {{ item.1 }}" | ||
with_indexed_items: "{{ drupal_gemini_pseudo_bundles }}" | ||
|
||
- name: Set media urls | ||
command: "{{ drush_path }} --root {{ drupal_core_path }} -y cset --input-format=yaml media.settings standalone_url true" | ||
|
||
- name: Run migrations | ||
command: "{{ drush_path }} --root {{ drupal_core_path }} -y -l localhost:{{ apache_listen_port }} --userid=1 mim --group=islandora" | ||
|
||
|
@@ -64,7 +59,7 @@ | |
group: "{{ webserver_app_user }}" | ||
mode: 0775 | ||
recurse: yes | ||
|
||
- name: Chown islandora core feature | ||
file: | ||
dest: "{{ drupal_core_path }}/modules/contrib/islandora/modules/islandora_core_feature" | ||
|
@@ -91,3 +86,7 @@ | |
group: "{{ webserver_app_user }}" | ||
mode: 0775 | ||
recurse: yes | ||
|
||
- name: Clear cache | ||
command: "{{ drush_path }} --root {{ drupal_core_path }} -y cr" | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.