From 981e9b16abeb2b56d0aa24444cfe0edf7439ff8f Mon Sep 17 00:00:00 2001 From: Radar231 Date: Thu, 22 Jul 2021 23:14:57 -0400 Subject: [PATCH] initial checkin --- README.md | 7 +++++++ tasks/main.yml | 13 +++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 README.md create mode 100644 tasks/main.yml diff --git a/README.md b/README.md new file mode 100644 index 0000000..62addf1 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# Ansible Role: reboot + +## Introduction + +This Ansible role is a very simple role that uses the standard **reboot** +module to reboot the target host. + diff --git a/tasks/main.yml b/tasks/main.yml new file mode 100644 index 0000000..63fa4f0 --- /dev/null +++ b/tasks/main.yml @@ -0,0 +1,13 @@ +--- +########################################################################### +# +# This Ansible role is a very simple role that uses the standard **reboot** +# module to reboot the target host. +# +########################################################################### +# tasks file for reboot + +- name: Reboot the server + reboot: + +# EOF