commit 37eb63686739705e9eda3758a18298b346b5f3a5 Author: chris Date: Tue Nov 16 12:06:52 2021 +0100 First check. 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