Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
drupal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ansible
Roles
drupal
Compare revisions
1c7e697b2d1509bd1bd7409d406a1f8eae554a68 to cbf064a9700d81337cf45e117194e64bd5f23abd
Project 'ansible/ansible-roles/drupal' was moved to 'ansible/roles/drupal'. Please update any links and bookmarks that may still have the old path.
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ansible/roles/drupal
Select target project
No results found
cbf064a9700d81337cf45e117194e64bd5f23abd
Select Git revision
Swap
Target
ansible/roles/drupal
Select target project
ansible/roles/drupal
max/drupal
ericzillmann/drupal
3 results
1c7e697b2d1509bd1bd7409d406a1f8eae554a68
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Fix aliases for branches containing a slash
· cbf064a9
jurgenhaas
authored
4 years ago
cbf064a9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tasks/copy_data/main.yml
+2
-2
2 additions, 2 deletions
tasks/copy_data/main.yml
with
2 additions
and
2 deletions
tasks/copy_data/main.yml
View file @
cbf064a9
...
...
@@ -20,8 +20,8 @@
args
:
chdir
:
'
{{
webRoot
}}'
with_items
:
-
sql:sync --create-db @{{ drupal.id }}_stages.{{ branch }} @{{ drupal.id }}_stages.{{ destination_branch }}
-
rsync @{{ drupal.id }}_stages.{{ branch }}:%files/ @{{ drupal.id }}_stages.{{ destination_branch }}:%files -- --chown={{ apacheUser }}:{{ apacheUser }} --safe-links
-
sql:sync --create-db @{{ drupal.id }}_stages.{{ branch
|replace("/","-")
}} @{{ drupal.id }}_stages.{{ destination_branch
|replace("/","-")
}}
-
rsync @{{ drupal.id }}_stages.{{ branch
|replace("/","-")
}}:%files/ @{{ drupal.id }}_stages.{{ destination_branch
|replace("/","-")
}}:%files -- --chown={{ apacheUser }}:{{ apacheUser }} --safe-links
-
cache-rebuild
-
updatedb
-
config-import sync
...
...
This diff is collapsed.
Click to expand it.