3f68936a0c
Add CentOS 8 support for the openafs client build Change-Id: I8290cf1eed9ee8e4af44ac209502553944c52103 Depends-On: https://review.opendev.org/702348
66 lines
1.6 KiB
YAML
66 lines
1.6 KiB
YAML
- name: Setup OS specific variable include
|
|
include_vars: "{{ lookup('first_found', params) }}"
|
|
vars:
|
|
params:
|
|
files:
|
|
- "{{ ansible_distribution }}.{{ ansible_architecture }}.yaml"
|
|
- "{{ ansible_distribution }}.{{ ansible_distribution_major_version }}.yaml"
|
|
- "{{ ansible_distribution }}.yaml"
|
|
- "{{ ansible_os_family }}.yaml"
|
|
paths:
|
|
- vars
|
|
|
|
- name: Check config path defined
|
|
fail:
|
|
msg: "openafs_client_config_path not defined"
|
|
when: not openafs_client_config_path
|
|
|
|
- name: Create configuration directory
|
|
file:
|
|
path: '{{ openafs_client_config_path }}'
|
|
state: directory
|
|
become: yes
|
|
|
|
- name: Install client base config files
|
|
template:
|
|
dest: '{{ openafs_client_config_path }}/{{ item }}'
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
src: '{{ item }}'
|
|
loop:
|
|
- afs.conf.client
|
|
- CellServDB
|
|
become: yes
|
|
|
|
- name: Install client templated config files
|
|
template:
|
|
dest: '{{ openafs_client_config_path }}/{{ item }}'
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
src: '{{ item }}.j2'
|
|
loop:
|
|
- cacheinfo
|
|
- ThisCell
|
|
become: yes
|
|
|
|
- name: Setup OS specific openafs-client environment
|
|
include_tasks: "{{ lookup('first_found', params) }}"
|
|
vars:
|
|
params:
|
|
files:
|
|
- "{{ ansible_distribution }}.{{ ansible_architecture }}.yaml"
|
|
- "{{ ansible_distribution }}.yaml"
|
|
- "{{ ansible_os_family }}.yaml"
|
|
- "default.yaml"
|
|
paths:
|
|
- openafs-client
|
|
|
|
- name: Ensure openafs-client service running
|
|
service:
|
|
name: openafs-client
|
|
state: started
|
|
enabled: yes
|
|
become: yes
|