Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Adds os_images_rhel_debootstrap_enabled
Use case is when you don't want this role to modify package repos, but
you still want debootstrap.
  • Loading branch information
jovial committed Feb 20, 2026
commit 3c5d3db96bae9f534a6daa8de3ad4c3b31d05b55
4 changes: 4 additions & 0 deletions roles/os_images/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,7 @@ os_images_hide: false

# Visibility of images ('public' requires admin rights.)
os_images_visibility: "{{ 'public' if os_images_public | bool else 'private' }}"

# Whether or not to install debootstrap on Linux distributions in the RedHat family.
# This allows you to build Debian based images on RedHat hosts. Requires EPEL.
os_images_rhel_debootstrap_enabled: "{{ os_images_install_epel_repo }}"
Comment thread
jovial marked this conversation as resolved.
2 changes: 1 addition & 1 deletion roles/os_images/vars/RedHat.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# List of package dependencies.
os_images_package_dependencies:
- debootstrap
- "{% if os_images_rhel_debootstrap_enabled | bool %}debootstrap{% endif %}"
- dosfstools
- gdisk
- "{% if os_images_git_elements | length > 0 %}git{% endif %}"
Expand Down