mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-24 02:20:51 +08:00
44 lines
1.5 KiB
YAML
44 lines
1.5 KiB
YAML
---
|
|
#
|
|
# This task sets up iscsid and mpathd on a machine.
|
|
#
|
|
#
|
|
- name: install packages needed for iscsi_client
|
|
yum: state=installed name={{ item }}
|
|
with_items:
|
|
- iscsi-initiator-utils
|
|
- device-mapper-multipath
|
|
tags:
|
|
- packages
|
|
|
|
- name: enable iscsi service
|
|
service: state=running enabled=yes name=iscsi
|
|
tags:
|
|
- services
|
|
|
|
- name: enable multipathd service
|
|
service: state=running enabled=yes name=multipathd
|
|
tags:
|
|
- services
|
|
|
|
- name: setup multipath.conf file
|
|
copy: src=multipath.conf dest=/etc/multipath.conf
|
|
tags:
|
|
- config
|
|
|
|
- name: setup initiatorname.iscsi
|
|
template: src=initiatorname.iscsi.j2 dest=/etc/iscsi/initiatorname.iscsi
|
|
tags:
|
|
- config
|
|
|
|
- name: run iscsiadm command for initial connect to vtap-fedora-iscsi01
|
|
command: creates=/var/lib/iscsi/nodes/{{ netapp_iscsi_name }}/{{ netapp_iscsi_portal }},3260 /sbin/iscsiadm --mode node --targetname --portal {{ netapp_iscsi_portal }} -o new ; /sbin/iscsiadm --mode node --targetname {{ netapp_iscsi_name }} --portal {{ netapp_iscsi_portal }} --login
|
|
tags:
|
|
- config
|
|
|
|
- name: run iscsiadm command for initial connect to vtap-fedora-nfs01
|
|
command: creates=/var/lib/iscsi/nodes/{{ netapp_nfs01_iscsi_name }}/{{ netapp_nfs01_iscsi_portal }},3260 /sbin/iscsiadm --mode node --targetname --portal {{ netapp_nfs01_iscsi_portal }} -o new ; /sbin/iscsiadm --mode node --targetname {{ netapp_nfs01_iscsi_name }} --portal {{ netapp_nfs01_iscsi_portal }} --login
|
|
tags:
|
|
- config
|
|
when: inventory_hostname_short == "buildvmhost-10"
|