Skip to content
Snippets Groups Projects
Commit 02bf742e authored by Markos Chandras's avatar Markos Chandras
Browse files

roles: rkt: Add support for SUSE distributions

The RPM file that's provided by upstream can be used for SUSE
distributions as well. Moreover we simplify the playbook to use
the 'package' module to install packages across different distros.

Link: https://github.com/rkt/rkt/pull/3904
parent d07f75b3
Branches
Tags
No related merge requests found
......@@ -15,22 +15,11 @@
tags:
- facts
- name: install rkt pkg on ubuntu
apt:
deb: "{{ rkt_download_url }}/{{ rkt_pkg_name }}"
- name: install rkt pkg
package:
name: "{{ rkt_download_url }}/{{ rkt_pkg_name }}"
state: present
register: rkt_task_result
until: rkt_task_result|succeeded
retries: 4
delay: "{{ retry_stagger | random + 3 }}"
when: ansible_os_family == "Debian"
- name: install rkt pkg on centos
yum:
pkg: "{{ rkt_download_url }}/{{ rkt_pkg_name }}"
state: present
register: rkt_task_result
until: rkt_task_result|succeeded
retries: 4
delay: "{{ retry_stagger | random + 3 }}"
when: ansible_os_family == "RedHat"
---
rkt_pkg_name: "rkt-{{ rkt_pkg_version }}.x86_64.rpm"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment