commit 8c48aecf2a3e6eb82211af5e27a3314961adc1cd Author: JonnyBravo Date: Thu Mar 16 21:34:24 2023 +0100 added diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..a2a1e7b --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1 @@ +playbook: test_play.yml diff --git a/test_play.yml b/test_play.yml new file mode 100755 index 0000000..a148f0f --- /dev/null +++ b/test_play.yml @@ -0,0 +1,10 @@ +#! /usr/bin/env ansible-playbook +--- +- name: "TestPlay" + gather_facts: true + become: false + hosts: localhost + connection: local + tasks: + - debug: + msg: "Hello World"