blob: dac0bc47dc72a857c6907f2b13aecb0607fbecdc [file] [log] [blame]
Mohammed Naser545bc432023-04-16 23:02:23 +00001# 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
15- name: Prepare
16 hosts: all
17 become: true
18 pre_tasks:
19 - name: Wait for systemd to complete initialization
20 ansible.builtin.command: systemctl is-system-running
21 register: systemctl_status
22 until: >
23 'running' in systemctl_status.stdout or
24 'degraded' in systemctl_status.stdout
25 retries: 30
26 delay: 5
27 changed_when: false
28 failed_when: systemctl_status.rc > 1
29 tasks:
30 - name: Refresh cache
31 ansible.builtin.package:
32 update_cache: true
33
34 # NOTE(mnaser): The base image installs Ansible using `pip` which breaks
35 # the system Python, we uninstall all Python packages.
36 - name: Fix Python installation
37 block:
38 - name: Get all Python packages
39 ansible.builtin.command: pip freeze
40 register: pip_freeze
41
42 - name: Uninstall all Python packages
43 ansible.builtin.pip:
44 name: "{{ pip_freeze.stdout_lines }}"
45 state: absent
46
47- ansible.builtin.import_playbook: vexxhost.ceph.create_fake_devices