Merge "SUSE: Fix version compare for OBS containers repository"

This commit is contained in:
Zuul 2018-10-26 12:00:58 +00:00 committed by Gerrit Code Review
commit c68d1a060b
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ lxc_hosts_external_repo:
# NOTE(hwoarang) Leap 15.X is newer than 42.X and it has all the necessary LXC packages so we don't need
# to use the OBS repository. As such we only add it if version is >= 42 so we can capture all the old Leap
# releases. Using the external repo can be removed once we drop support for 42.X
state: "{{ (ansible_distribution_major_version >= 42) | ternary ('present', 'absent') }}"
state: "{{ (ansible_distribution_version is version ('42.1', '>=')) | ternary ('present', 'absent') }}"
system_config_dir: "/etc/sysconfig"
systemd_utils_prefix: "/usr/lib/systemd"