community.general.iso_extract module – Extract files from an ISO image
Note
This module is part of the community.general collection (version 10.7.5).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install community.general.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.general.iso_extract.
Synopsis
- This module has two possible ways of operation. 
- If 7zip is installed on the system, this module extracts files from an ISO into a temporary directory and copies files to a given destination, if needed. 
- If the user has mount-capabilities (CAP_SYS_ADMIN on Linux) this module mounts the ISO image to a temporary location, and copies files to a given destination, if needed. 
Requirements
The below requirements are needed on the host that executes this module.
- Either 7z (from - 7zipor- p7zippackage)
- Or mount capabilities (root-access, or CAP_SYS_ADMIN capability on Linux) 
Parameters
| Parameter | Comments | 
|---|---|
| The destination directory to extract files to. | |
| The path to the  If not provided, it assumes the value  | |
| A list of files to extract from the image. Extracting directories does not work. | |
| If  If  Choices: 
 | |
| The ISO image to extract files from. | |
| Password used to decrypt files from the ISO. It is only used if  The password is used as a command line argument to 7z. This is a potential security risk that allows passwords to be revealed if someone else can list running processes on the same machine in the right moment. | 
Attributes
| Attribute | Support | Description | 
|---|---|---|
| Support: full | Can run in  | |
| Support: none | Will return details on what has changed (or possibly needs changing in  | 
Notes
Note
- Only the file checksum (content) is taken into account when extracting files from the ISO image. If - force=false, only checks the presence of the file.
Examples
- name: Extract kernel and ramdisk from a LiveCD
  community.general.iso_extract:
    image: /tmp/rear-test.iso
    dest: /tmp/virt-rear/
    files:
      - isolinux/kernel
      - isolinux/initrd.cgz
