From 37eb63686739705e9eda3758a18298b346b5f3a5 Mon Sep 17 00:00:00 2001 From: chris Date: Tue, 16 Nov 2021 12:06:52 +0100 Subject: [PATCH] First check. --- .gitignore | 1 + host.yaml | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 .gitignore create mode 100644 host.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..723ef36 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea \ No newline at end of file diff --git a/host.yaml b/host.yaml new file mode 100644 index 0000000..3354876 --- /dev/null +++ b/host.yaml @@ -0,0 +1,10 @@ +--- +# This playbook checks for os version +- name: Check OS version + hosts: all + become: false + gather_facts: true + + tasks: + - name: Check uname + shell: uname -a