diff --git a/hosts b/hosts new file mode 100644 index 0000000..d60feea --- /dev/null +++ b/hosts @@ -0,0 +1 @@ +deb12cli ansible_host=192.168.1.60 diff --git a/playbook.yml b/playbook.yml new file mode 100644 index 0000000..1884c93 --- /dev/null +++ b/playbook.yml @@ -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 +