Skip to content
Snippets Groups Projects
Commit d61edab1 authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible-playbooks/general#85 Linting

parent 386e71f1
No related branches found
No related tags found
No related merge requests found
jailkit: false
---
jailkit: no
jailroot: /jails
jailsite_init_force: false
jailuser_init: false
jailsite_init_force: no
jailuser_init: no
jailkit_components: extendedshell git jk_lsh rsync scp sftp ssh php drush netutils
jailusers: []
......@@ -20,7 +20,7 @@
'.profile',
'.ssh',
'.zshrc'
]
]
when: item.0.jail is defined and username in item.0.jail.users and (limit_site is not defined or limit_site == 'no' or item.0.id is not defined or limit_site == item.0.id)
ignore_errors: yes
tags:
......
......@@ -130,24 +130,24 @@
- block:
- name: Remove PHP PHP Default Pool
file:
path: /etc/{{ php_base_dir|default("php5") }}/fpm/pool.d/www.conf
state: absent
- name: Create PHP Pool
template:
src: php_pool.conf
dest: /etc/{{ php_base_dir|default("php5") }}/fpm/pool.d/{{ item.jail.name }}.conf
owner: root
group: root
mode: 0644
with_items: '{{ drupal_settings|default([]) }}'
when: item.jail is defined and (limit_site is not defined or limit_site == 'no' or item.id is not defined or limit_site == item.id)
tags:
- ApacheConfig
notify:
- Restart PHP-FPM
- name: Remove PHP PHP Default Pool
file:
path: /etc/{{ php_base_dir|default("php5") }}/fpm/pool.d/www.conf
state: absent
- name: Create PHP Pool
template:
src: php_pool.conf
dest: /etc/{{ php_base_dir|default("php5") }}/fpm/pool.d/{{ item.jail.name }}.conf
owner: root
group: root
mode: 0644
with_items: '{{ drupal_settings|default([]) }}'
when: item.jail is defined and (limit_site is not defined or limit_site == 'no' or item.id is not defined or limit_site == item.id)
tags:
- ApacheConfig
notify:
- Restart PHP-FPM
when: php_fpm
......
......@@ -9,6 +9,6 @@
- block:
- import_tasks: jailkit.yml
- import_tasks: jailkit.yml
when: not excluded_roles or "jailkit" not in excluded_roles and jailkit
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment