openstack-ansible-os_molten.../tasks/molteniron_pre_install.yml

47 lines
1.5 KiB
YAML

---
# Copyright (c) 2017 IBM Corporation.
#
# 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 the system group
group:
name: "{{ molteniron_system_group_name }}"
state: "present"
system: "yes"
- name: Create the system user
user:
name: "{{ molteniron_system_user_name }}"
group: "{{ molteniron_system_group_name }}"
comment: "{{ molteniron_system_comment }}"
shell: "{{ molteniron_system_shell }}"
system: "yes"
createhome: "yes"
home: "{{ molteniron_system_user_home }}"
- name: Create required dirs
file:
path: "{{ item.path }}"
state: directory
owner: "{{ item.owner|default(molteniron_system_user_name) }}"
group: "{{ item.group|default(molteniron_system_group_name) }}"
mode: "{{ item.mode|default('0755') }}"
with_items:
- path: "/openstack/venvs"
mode: "0755"
owner: "root"
group: "root"
- path: "{{ molteniron_system_user_home }}"
- path: "/var/lock/molteniron"
mode: "2755"