From fa2c462f90c0124a3177b081d9a229213f61709d Mon Sep 17 00:00:00 2001 From: Tyler Hale Date: Tue, 23 Aug 2022 08:25:04 -0600 Subject: [PATCH] Updating variable name --- README.md | 2 +- roles/base/defaults/main.yml | 2 +- roles/base/tasks/core.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4a07ca7..621fd52 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ If the "base_core_hostname" variable is defined, it is recommended to set the an | base_core_management_user | No | ansible_user | | Defines the account that ansible will use for management in the future | | base_core_management_user_disable_password | No | False | True, False | When enabled the password for the management user account will be disabled | | base_core_motd_banner | No | "" | | Banner to be added to MOTD if desired | -| base_core_motd_enabled | Yes | True | True, False | Allows the MOTD to be configured | +| base_core_motd_configure | Yes | True | True, False | Allows the MOTD to be configured | | base_core_root_ca_basename | No | "" | | Basename of the cert for local system reference | | base_core_root_ca_convert | Yes | False | True, False | Converts the defined certificate from DER to PEM type | | base_core_root_ca_url | No | "" | | URL of a Root CA to install | diff --git a/roles/base/defaults/main.yml b/roles/base/defaults/main.yml index dd91ca0..59f2428 100644 --- a/roles/base/defaults/main.yml +++ b/roles/base/defaults/main.yml @@ -33,7 +33,7 @@ base_core_hostname: "" # ==== # Allows the MOTD to be configured -base_core_motd_enabled: true +base_core_motd_configure: true # Banner to add to MOTD base_core_motd_banner: "" diff --git a/roles/base/tasks/core.yml b/roles/base/tasks/core.yml index c3f2a07..7db56d7 100644 --- a/roles/base/tasks/core.yml +++ b/roles/base/tasks/core.yml @@ -32,7 +32,7 @@ file: core_motd.yml apply: tags: motd - when: base_core_motd_enabled == true + when: base_core_motd_configure == true tags: - motd