summaryrefslogtreecommitdiff
path: root/examples/install-tools.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/install-tools.yaml')
-rw-r--r--examples/install-tools.yaml14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/install-tools.yaml b/examples/install-tools.yaml
new file mode 100644
index 0000000..98d4ecf
--- /dev/null
+++ b/examples/install-tools.yaml
@@ -0,0 +1,14 @@
+tasks:
+ - name: Instalar curl
+ module: package
+ args:
+ name: curl
+ state: present
+ become: true
+
+ - name: Instalar vim
+ module: package
+ args:
+ name: vim
+ state: present
+ become: true