From 2441a28b4a3d3092659c2787fd3fb8ec83003618 Mon Sep 17 00:00:00 2001 From: phil Date: Wed, 14 Feb 2024 23:50:37 +0100 Subject: [PATCH] Commit initia*l --- hosts | 1 + playbook.yml | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 hosts create mode 100644 playbook.yml 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 +