ansible-role-statsd/tasks/config.yaml
Paul Belanger 1e5c3995e1
Initial commit
Change-Id: I2b63a94e622cbb48b3feb247c73f822a9500c36b
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2018-03-22 20:47:11 -04:00

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