From ccf63c073d349271ce910335837a0ca57289d1be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Mon, 10 Jan 2022 21:57:28 +0100 Subject: [PATCH] Initial commit --- README.md | 3 +++ inventory/hosts.yml | 4 ++++ project/ping.yml | 5 +++++ 3 files changed, 12 insertions(+) create mode 100644 README.md create mode 100644 inventory/hosts.yml create mode 100644 project/ping.yml diff --git a/README.md b/README.md new file mode 100644 index 0000000..0dc580e --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# nrec-ansible + +Ansible playbooks for stuff in NREC. \ No newline at end of file diff --git a/inventory/hosts.yml b/inventory/hosts.yml new file mode 100644 index 0000000..d16b1e1 --- /dev/null +++ b/inventory/hosts.yml @@ -0,0 +1,4 @@ +all: + hosts: + docker2.t-juice.club + docker.t-juice.club \ No newline at end of file diff --git a/project/ping.yml b/project/ping.yml new file mode 100644 index 0000000..e191458 --- /dev/null +++ b/project/ping.yml @@ -0,0 +1,5 @@ +--- +- hosts: all + tasks: + - name: Ping hosts + ansible.builtin.ping: \ No newline at end of file