commit 981e9b16abeb2b56d0aa24444cfe0edf7439ff8f Author: Radar231 Date: Thu Jul 22 23:14:57 2021 -0400 initial checkin 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