Updating variable name

This commit is contained in:
Tyler Hale 2022-08-23 08:25:04 -06:00
parent e0ecbe4eab
commit fa2c462f90
Signed by: Tyler
GPG key ID: C7CC4B910D88EF96
3 changed files with 3 additions and 3 deletions

View file

@ -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 | 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_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_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_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_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 | | base_core_root_ca_url | No | "" | | URL of a Root CA to install |

View file

@ -33,7 +33,7 @@ base_core_hostname: ""
# ==== # ====
# Allows the MOTD to be configured # Allows the MOTD to be configured
base_core_motd_enabled: true base_core_motd_configure: true
# Banner to add to MOTD # Banner to add to MOTD
base_core_motd_banner: "" base_core_motd_banner: ""

View file

@ -32,7 +32,7 @@
file: core_motd.yml file: core_motd.yml
apply: apply:
tags: motd tags: motd
when: base_core_motd_enabled == true when: base_core_motd_configure == true
tags: tags:
- motd - motd