Mount images *(mount-img)* -------------------------- Mount images. Example ^^^^^^^ Enable the mounting of images (2) and create the list of mount points (3). For example, .. code-block:: yaml :emphasize-lines: 2,3 :linenos: shell> cat host_vars/build.example.com/fp-mount-img.yml fp_mount_img: true fp_mount_img_entries: - img: /export/img/FreeBSD-12.2-RELEASE-arm-armv7-CUBOX-HUMMINGBOARD.img mount: /usr/local/poudriere/jails/12arm7 fstype: ufs partition: s2a Dry-run the tasks, display the variables, and display the changes :: shell> ansible-playbook playbook.yml -t fp_mount_img -e fp_mount_img_debug=true -CD If all seems to be right configure the vnode and mount the image :: shell> ansible-playbook playbook.yml -t fp_mount_img Log to the remote host, list memory disks (2) and related mount points (5) .. code-block:: sh :emphasize-lines: 2,5 :linenos: shell> mdconfig -l -v md0 vnode 3072M /export/img/FreeBSD-12.2-RELEASE-arm-armv7-CUBOX-HUMMINGBOARD.img shell> df | grep arm /dev/md0s2a 5971064 4056912 1436472 74% /zroot/poudriere/jails/12arm7 .. seealso:: * Annotated Source code :ref:`as_mount-img.yml`