initial checkin

This commit is contained in:
Radar231 2021-07-22 23:14:57 -04:00
commit 981e9b16ab
2 changed files with 20 additions and 0 deletions

7
README.md Normal file
View File

@ -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.

13
tasks/main.yml Normal file
View File

@ -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