Commit initia*l

This commit is contained in:
phil 2024-02-14 23:50:37 +01:00
parent b3b12449b6
commit 2441a28b4a
2 changed files with 20 additions and 0 deletions

1
hosts Normal file
View File

@ -0,0 +1 @@
deb12cli ansible_host=192.168.1.60

19
playbook.yml Normal file
View File

@ -0,0 +1,19 @@
---
- name: Run the test playbook
#gather_facts: false
hosts: all
become: yes
tasks:
- name: Get the username running this playbook
command: uptime
register: uptime_on_the_host
- name: Display the User name
ansible.builtin.debug:
msg: "Hello User {{ uptime_on_the_host.stdout }} from Jenkins and Ansible!!"
- name: Set timezone to Europe/Paris
community.general.timezone:
name: Europe/Paris