Merge "openafs-client: add service timeout override"

This commit is contained in:
Zuul 2021-06-17 00:22:24 +00:00 committed by Gerrit Code Review
commit 1289e32f6d
4 changed files with 28 additions and 1 deletions

View File

@ -43,3 +43,10 @@ role has limited platform support. Currently supported are
:default: no
Enable or disable gpg checking for ``openafs_yum_repo_url``
.. zuul:rolevar:: openafs_client_service_timeout_sec
:default: 480
The TimeoutSec for service start. Accounting for the cache
during startup can cause a high load which may necessitate
a longer startup timeout on some platforms.

View File

@ -1,3 +1,4 @@
openafs_client_cell: 'openstack.org'
openafs_client_cache_directory: '/var/cache/openafs'
openafs_client_cache_size: 500000
openafs_client_cache_size: 500000
openafs_client_service_timeout_sec: 480

View File

@ -62,6 +62,23 @@
mode: 0700
become: yes
- name: Set timeout override
become: yes
block:
- name: Create service override directory
file:
path: '/etc/systemd/system/openafs-client.service.d'
state: directory
owner: root
group: root
mode: 0755
- name: Save override
template:
dest: '/etc/systemd/system/openafs-client.service.d/timeout.conf'
src: 'timeout.conf.j2'
group: root
mode: 0644
- name: Setup OS specific openafs-client environment
include_tasks: "{{ lookup('first_found', params) }}"
vars:

View File

@ -0,0 +1,2 @@
[Service]
TimeoutSec={{ openafs_client_service_timeout_sec }}