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
Commits
3ff3cdfd
Commit
3ff3cdfd
authored
8 years ago
by
jurgenhaas
Browse files
Options
Downloads
Patches
Plain Diff
ansible-roles/drupal#10 Implement execution of post deploy tasks
parent
1129f4b1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
defaults/main.yml
+3
-9
3 additions, 9 deletions
defaults/main.yml
tasks/deploy/gitcomposer.yml
+16
-0
16 additions, 0 deletions
tasks/deploy/gitcomposer.yml
tasks/install.yml
+7
-0
7 additions, 0 deletions
tasks/install.yml
with
26 additions
and
9 deletions
defaults/main.yml
+
3
−
9
View file @
3ff3cdfd
...
...
@@ -8,28 +8,22 @@ drupal_config_directories:
drupal_post_deploy_tasks
:
d6
:
-
'
pull-data'
-
'
pre-processing'
-
'
registry-rebuild'
-
'
dev-modules
{{
(drupal.dev_mode|default("False"))|ternary("on","off")
}}'
-
'
updatedb'
-
'
cache-clear
all'
-
'
dev-modules
{{
(drupal.dev_mode|default(false))|ternary("on","off")
}}'
d7
:
-
'
pull-data'
-
'
pre-processing'
-
'
registry-rebuild'
-
'
dev-modules
{{
(drupal.dev_mode|default("False"))|ternary("on","off")
}}'
-
'
features-revert-all'
-
'
updatedb'
-
'
cache-clear
all'
-
'
dev-modules
{{
(drupal.dev_mode|default(false))|ternary("on","off")
}}'
d8
:
-
'
pull-data'
-
'
pre-processing'
-
'
cache-rebuild
all'
-
'
dev-modules
{{
(drupal.dev_mode|default("False"))|ternary("on","off")
}}'
-
'
config-import
sync'
-
'
updatedb'
-
'
entity-updates'
-
'
dev-modules
{{
(drupal.dev_mode|default(false))|ternary("on","off")
}}'
letsencrypt_pause_services
:
-
'
apache2'
This diff is collapsed.
Click to expand it.
tasks/deploy/gitcomposer.yml
+
16
−
0
View file @
3ff3cdfd
...
...
@@ -23,3 +23,19 @@
composer
:
command='update'
working_dir='{{ webRoot }}'
# The following is a workaround until Drupal's packaging supports libraries, see https://www.drupal.org/node/2474007
-
name
:
"
Ensure
Drush
Contrib
Directory"
file
:
path
:
'
{{
webRoot
}}/drush/contrib'
state
:
'
directory'
owner
:
'
root'
group
:
'
root'
-
name
:
"
Link
all
global
Drush
commands"
file
:
src='{{ composer_home_path }}/vendor/drush/drush/commands/{{ item|regex_replace("(.*)(\-\d\.x\-\d\.x)", "\\1") }}'
dest='{{ webRoot }}/drush/contrib/{{ item|regex_replace("(.*)(\-\d\.x\-\d\.x)", "\\1") }}'
state='link'
with_items
:
'
{{
drush_extra_commands
}}'
This diff is collapsed.
Click to expand it.
tasks/install.yml
+
7
−
0
View file @
3ff3cdfd
...
...
@@ -7,12 +7,14 @@
cronUser='root'
apacheUser='www-data'
apacheLogDir='/var/log/apache2'
drushSubkey='{{ drupal.drush_subkey|default("") }}'
when
:
drupal.jail is not defined
-
set_fact
:
webRoot='{{ jailroot }}/{{ drupal.jail.name }}/var/www{{ drupal.webRoot|default("") }}'
cronUser='{{ drupal.jail.name }}'
apacheUser='{{ drupal.jail.name }}'
apacheLogDir='{{ jailroot }}/{{ drupal.jail.name }}/var/log/apache2'
drushSubkey='.{{ drupal.jail.name }}'
when
:
drupal.jail is defined
-
set_fact
:
installSource={{ drupal.src|default([]) }}
...
...
@@ -195,3 +197,8 @@
with_items
:
'
{{
drupal.domains
}}'
loop_control
:
loop_var
:
drupal_domain
-
name
:
"
Run
Post
Deploy
Tasks"
shell
:
drush -y @{{ inventory_hostname }}{{ drushSubkey }} {{ item }}
with_items
:
'
{{
drupal_post_deploy_tasks[drupal.version|default("d7")]
}}'
tags
:
'
deploy'
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment