Execution
Date 08 Dec 2025 13:40:18 +0000
Duration 00:10:06.79
Controller aio1.openstack.local
User root
Versions
Ansible 2.18.6
ara 1.7.4 / 1.7.4
Python 3.12.11
Summary
15 Hosts
608 Tasks
2412 Results
18 Plays
158 Files
0 Records

File: /home/zuul/src/opendev.org/openstack/openstack-ansible-lxc_hosts/tasks/lxc_cache_rootfs.yml

---
# Copyright 2020, BBC R&D
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

- name: Create sparse machines file
  ansible.builtin.command: "truncate -s 11G /var/lib/machines.raw"
  args:
    creates: /var/lib/machines.raw
  register: machines_create

- name: Format the machines file
  community.general.filesystem:
    fstype: ext4
    dev: /var/lib/machines.raw
  when:
    - machines_create is changed

- name: Create systemd mount
  ansible.builtin.import_role:
    name: systemd_mount
  vars:
    systemd_mounts:
      - what: "/var/lib/machines.raw"
        where: "/var/lib/machines"
        type: "ext4"
        options: "loop"
        unit:
          ConditionPathExists:
            - "/var/lib/machines.raw"
        state: "started"
        enabled: true

- name: Remove the old image cache
  ansible.builtin.file:
    path: "/var/lib/machines/{{ lxc_container_base_name }}"
    state: absent
  when:
    - lxc_image_cache_refresh | bool

- name: Create new image cache directory
  ansible.builtin.file:
    path: "/var/lib/machines/{{ lxc_container_base_name }}"
    state: directory
    mode: "0755"
  register: create_new_dir

- name: Build the base image using a CLI tool
  ansible.builtin.command: "{{ lxc_hosts_container_build_command }}"
  when: lxc_hosts_container_build_command | length > 0
  changed_when: false
  register: _build_container_base_image
  until: _build_container_base_image is success
  retries: 5
  delay: 2