Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions playbooks/ci_configure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
roles:
- detect_seapath_distro
- role: ci_cleanup_varlog
when: seapath_distro != "Debian"
when: seapath_distro != "Debian" and seapath_distro != "CentOS"
- role: ci_reinstalliso
when: seapath_distro == "Debian"
when: seapath_distro == "Debian" or seapath_distro == "CentOS"
- role: ci_restoredd
when: seapath_distro == "OracleLinux"
- role: ci_restore_snapshot
when: seapath_distro != "Debian" and seapath_distro != "OracleLinux"
when: seapath_distro != "Debian" and seapath_distro != "OracleLinux" and seapath_distro != "CentOS"

- name: CI configure skip reboot
hosts:
Expand Down
5 changes: 4 additions & 1 deletion roles/ci_reinstalliso/meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
---
galaxy_info:
author: "Seapath"
description: Reinstall the VMs from the SEAPATH debian ISO
description: Reinstall the machine from the SEAPATH ISO (Debian or CentOS)
license: Apache-2.0
min_ansible_version: 2.9.10
platforms:
- name: Debian
versions:
- all
- name: EL
versions:
- "9"
dependencies:
- role: detect_seapath_distro
Loading