diff --git a/README.md b/README.md index a903815..46e7172 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,30 @@ ansible-playbook playbooks/install_demo.yml -e @choose_demo.yml Video Link + + SERVER / Fact Scan + Will Tome +
demo: fact_scan
+ scan facts for Linux and Windows systems + Not available + + + + SERVER / Gather Debug Info + Will Tome +
demo: debug_info
+ provide info for memory and CPU usage for specified systems + Not available + + + + SERVER / Grant Sudo + Will Tome +
demo: grant_sudo
+ grant sudo privledges for specified time via survey + Not available + + SERVER / Patching Will Tome @@ -59,7 +83,7 @@ ansible-playbook playbooks/install_demo.yml -e @choose_demo.yml SERVER / Security Patching Will Tome -
demo: fact_scan
+
demo: security_patching
upgrade all yum packages for security related except kernel Not available diff --git a/playbooks/group_vars/all/05_grant_sudo.yml b/playbooks/group_vars/all/05_grant_sudo.yml index 2d468f4..993d193 100644 --- a/playbooks/group_vars/all/05_grant_sudo.yml +++ b/playbooks/group_vars/all/05_grant_sudo.yml @@ -1,5 +1,5 @@ --- -fact_scan: +grant_sudo: author: "Will Tome" category: infrastructure name: "SERVER / Grant Sudo" diff --git a/playbooks/group_vars/all/06_debug_info.yml b/playbooks/group_vars/all/06_debug_info.yml index da2d87c..a791451 100644 --- a/playbooks/group_vars/all/06_debug_info.yml +++ b/playbooks/group_vars/all/06_debug_info.yml @@ -1,5 +1,5 @@ --- -fact_scan: +debug_info: author: "Will Tome" category: infrastructure name: "SERVER / Gather Debug Info" diff --git a/playbooks/group_vars/all/07_security_patching.yml b/playbooks/group_vars/all/07_security_patching.yml index 34c98eb..3eae71f 100644 --- a/playbooks/group_vars/all/07_security_patching.yml +++ b/playbooks/group_vars/all/07_security_patching.yml @@ -1,5 +1,5 @@ --- -fact_scan: +security_patching: author: "Will Tome" category: infrastructure name: "SERVER / Security Patching"