Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • 2331-combine1
  • 2331-combine1-from-master
  • 2331-combine2
  • 2331-combine2-from-master
  • 2331-expressions-using-if
  • 2838-cronjobs-per-host
  • 2838-crontabs-collector
  • 2861-path-password-protection-without-general-pw
  • 2898-service-status
  • main
10 results

Target

Select target project
  • ansible/roles/drupal
  • max/drupal
  • ericzillmann/drupal
3 results
Select Git revision
  • 2331-combine1
  • 2331-combine1-from-master
  • 2331-combine2
  • 2331-combine2-from-master
  • 2331-expressions-using-if
  • 2838-cronjobs-per-host
  • 2838-crontabs-collector
  • 2861-path-password-protection-without-general-pw
  • 2898-service-status
  • main
10 results
Show changes
Commits on Source (1)
......@@ -49,6 +49,15 @@
recurse: yes
follow: no
- name: Set Permissions for current user on composer cache
file:
path: /usr/local/share/cache
owner: '{{ ansible_env.SUDO_USER|default("root") }}'
group: root
mode: u+rwX,g+rwX,o+rX
recurse: yes
follow: no
- name: Run Composer
composer:
command: install
......