openstack-ansible/playbooks/roles/memcached_server/tasks/memcached_pre_install.yml
kevin ca9cbb8f8f Removed memcached log directory task
The memcached play has a log directory task that will cause an issue
with permissions with a container where memcached is installed. To
solve this issue the log directory permissions change task needs to
be removed

Change-Id: I7daa76e601a1bf430765866c1e4c0b8f9638aa73
Closes-Bug: 1459039
2015-05-26 15:50:08 -07:00

25 lines
791 B
YAML

---
# Copyright 2014, Rackspace US, 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: Ensure the memcache user exists
user:
name: "{{ memcached_user }}"
comment: "memcached user"
system: "yes"
shell: "/bin/false"
createhome: "no"
tags:
- memcached-user