Enforce String notation for mode
This commit is contained in:
parent
b677defd97
commit
cbe7985814
7 changed files with 10 additions and 8 deletions
|
@ -18,6 +18,8 @@ The **patch** part changes is incremented if multiple releases happen the same m
|
|||
|
||||
### Fixed
|
||||
|
||||
* Enforce String notation for mode
|
||||
|
||||
### Removed
|
||||
|
||||
### Security
|
||||
|
|
|
@ -102,7 +102,7 @@
|
|||
create: yes
|
||||
owner: root
|
||||
group: elasticsearch
|
||||
mode: 0640
|
||||
mode: "0640"
|
||||
tags:
|
||||
- config
|
||||
|
||||
|
@ -114,7 +114,7 @@
|
|||
create: yes
|
||||
owner: root
|
||||
group: elasticsearch
|
||||
mode: 0640
|
||||
mode: "0640"
|
||||
tags:
|
||||
- config
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
create: yes
|
||||
owner: root
|
||||
group: elasticsearch
|
||||
mode: 0640
|
||||
mode: "0640"
|
||||
notify:
|
||||
- restart elasticsearch
|
||||
tags:
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
src: "{{ item }}"
|
||||
dest: "{{ evobackup_client__cron_path }}"
|
||||
force: true
|
||||
mode: 0755
|
||||
mode: "0755"
|
||||
loop: "{{ query('first_found', templates) }}"
|
||||
vars:
|
||||
templates:
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
template:
|
||||
src: keepalived.conf.j2
|
||||
dest: /etc/keepalived/keepalived.conf
|
||||
mode: 0644
|
||||
mode: "0644"
|
||||
notify: restart keepalived
|
||||
tags:
|
||||
- keepalived
|
||||
|
|
|
@ -13,13 +13,13 @@
|
|||
copy:
|
||||
src: phpContainer
|
||||
dest: /usr/local/bin/phpContainer
|
||||
mode: 0755
|
||||
mode: "0755"
|
||||
|
||||
# - name: Copy php shim to call phpContainer when the user is a web user
|
||||
# copy:
|
||||
# src: multiphp-shim
|
||||
# dest: /usr/local/bin/php
|
||||
# mode: 0755
|
||||
# mode: "0755"
|
||||
|
||||
# - name: Modify bashrc skel file
|
||||
# lineinfile:
|
||||
|
|
|
@ -57,6 +57,6 @@
|
|||
template:
|
||||
src: templates/munin-plugin-instances.conf.j2
|
||||
dest: '/etc/munin/plugin-conf.d/evolinux.redis_{{ redis_instance_name }}'
|
||||
mode: 0740
|
||||
mode: "0740"
|
||||
notify: restart munin-node
|
||||
tags: redis
|
||||
|
|
Loading…
Reference in a new issue