We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53c4652 commit 66a5f75Copy full SHA for 66a5f75
defaults/main.yml
@@ -0,0 +1,2 @@
1
+---
2
+ansible_version: 2.9.12
meta/main.yml
@@ -0,0 +1,9 @@
+galaxy_info:
+ author: Onaxiz
3
+ description: ansible role
4
+ company: None
5
+ license: MIT
6
+ min_ansible_version: 2.4
7
+ galaxy_tags: []
8
+
9
+dependencies: []
tasks/ansible.yml
@@ -0,0 +1,12 @@
+- name: Install pip
+ apt:
+ name:
+ - python-pip
+ state: present
+ update_cache: yes
+- name: Install ansible
10
+ pip:
11
+ name: ansible=="{{ ansible_version }}"
12
tasks/main.yml
@@ -0,0 +1,3 @@
+- name: Insall ansible
+ import_tasks: ansible.yml
0 commit comments