b13fccb583
A new release of ansible-lint exposed a failure in linters job. Change-Id: Ie17cd2b303d8e58039b0b147a603de522a31a83a Signed-off-by: Paul Belanger <pabelanger@redhat.com>
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
|
|
# Copyright 2015 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
---
|
|
- name: Create required directories
|
|
become: yes
|
|
file:
|
|
group: "{{ statsd_user_group }}"
|
|
owner: "{{ statsd_user_name }}"
|
|
path: "{{ item }}"
|
|
state: directory
|
|
with_items:
|
|
- /etc/statsd
|
|
- /var/log/statsd
|
|
|
|
- name: Install statsd configuration
|
|
become: yes
|
|
template:
|
|
dest: "{{ statsd_file_config_js_dest }}"
|
|
group: "{{ statsd_file_config_js_group }}"
|
|
mode: "{{ statsd_file_config_js_mode }}"
|
|
owner: "{{ statsd_file_config_js_owner }}"
|
|
src: "{{ statsd_file_config_js_src }}"
|
|
register: statsd_file_config_js
|