blob: 052262c05147312554b51d27762e32e22d8a610f [file] [log] [blame]
Mohammed Naserff42bb32023-06-03 13:42:14 -04001# Copyright (c) 2023 VEXXHOST, Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may
4# not use this file except in compliance with the License. You may obtain
5# a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations
13# under the License.
14
Mohammed Naserafcf0a12024-05-19 00:13:27 +020015- name: Add backports PPA
16 ansible.builtin.apt_repository:
Michiel Piscaer39dde0c2024-06-21 20:27:47 +020017 repo: "{{ multipathd_repository }}"
Oleksandr K92ac0b62024-07-11 21:49:57 +020018 register: _add_multipathd_ppa
19 retries: 10
20 delay: 2
21 until: _add_multipathd_ppa is not failed
Yaguang Tangff5a5a22024-07-13 07:09:12 +080022 when: ansible_distribution == 'Ubuntu' and ansible_distribution_release == 'jammy'
Mohammed Naserafcf0a12024-05-19 00:13:27 +020023
24- name: Install the multipathd package
25 ansible.builtin.package:
26 name: multipath-tools
Mohammed Naser6080c9b2024-07-18 10:43:09 -040027 state: latest # noqa: package-latest
Mohammed Naserafcf0a12024-05-19 00:13:27 +020028 notify:
Mohammed Naserab360042024-06-21 13:45:10 -040029 - Restart "multipathd"
Mohammed Naserafcf0a12024-05-19 00:13:27 +020030
Mohammed Naserff42bb32023-06-03 13:42:14 -040031- name: Install the configuration file
32 ansible.builtin.template:
33 src: multipath.conf.j2
34 dest: /etc/multipath.conf
35 owner: root
36 group: root
37 mode: "0644"
38 notify:
Mohammed Naserab360042024-06-21 13:45:10 -040039 - Restart "multipathd"