From 6686e692f933b95eff5aa2f41b867133b2a5d72d Mon Sep 17 00:00:00 2001 From: Radar231 Date: Mon, 3 Jan 2022 10:08:30 -0500 Subject: [PATCH] cleanup: removed centos code, cleaned up debian & ubuntu references --- base_pkgs.yml | 3 --- bash_mods.yml | 8 ++++---- chk_upgrades.yml | 2 -- 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/base_pkgs.yml b/base_pkgs.yml index e0dd35a..5480a3b 100644 --- a/base_pkgs.yml +++ b/base_pkgs.yml @@ -5,9 +5,6 @@ # install a selected set of packages as a desired baseline package # collection. # -# There is a separate (but as similar as possible) package list for Ubuntu -# and CentOS based hosts. -# ########################################################################### # # This playbook can be run using the following command line; diff --git a/bash_mods.yml b/bash_mods.yml index 9b47fc3..b9cb8a8 100644 --- a/bash_mods.yml +++ b/bash_mods.yml @@ -1,4 +1,4 @@ ---- +-- ########################################################################### # # This is the top level playbook for the 'bash_mods' role. This role will @@ -11,7 +11,7 @@ # ansible-playbook -i -e "username=" -e "homedir=" bash_mods.yml # # ie, -# ansible-playbook -i 192.168.1.123, -e "username=ubuntu" -e "homedir=/home/ubuntu" bash_mods.yml +# ansible-playbook -i 192.168.1.123, -e "username=someuser" -e "homedir=/home/someuser" bash_mods.yml # ########################################################################### @@ -24,8 +24,8 @@ vars: # Set the following two variables as required # ie, - # username: ubuntu - # homedir: /home/ubuntu + # username: someuser + # homedir: /home/someuser # Default is to apply the playbook against the root user username: "root" homedir: "/root" diff --git a/chk_upgrades.yml b/chk_upgrades.yml index 7d930d9..d09d2b7 100644 --- a/chk_upgrades.yml +++ b/chk_upgrades.yml @@ -5,8 +5,6 @@ # # This role will check for available package upgrades on the target host. # -# This role should work on both Ubuntu and CentOS based hosts. -# ########################################################################### # # This playbook can be run using the following command line;