Files
test_play/test_play.yml
jonnybravo 65fe764e5a
Some checks are pending
mulit_pipeline_default/pipeline/head Build queued...
test jenkins
2023-05-04 13:50:48 +02:00

29 lines
590 B
YAML
Executable File

#! /usr/bin/env ansible-playbook
---
- name: "TestPlay"
gather_facts: true
become: true
hosts: 192.168.150.40
#hosts: localhost
#connection: local
tasks:
- debug:
msg: "Hello World"
- debug:
var: ansible_host
- debug:
var: playbook_dir
- debug:
msg: "Lalaalalala"
- debug:
var: ansible_host
- debug:
msg: "'{{ lookup('ansible.builtin.env', 'test') }}'"
- name: Install Package Test
package:
name: "{{item}}"
state: present
with_items:
- vim
- net-tools