Ansible role for common configuration tasks on EL7 servers.
Currently, the role only supports CentOS and Red Hat Enterprise Linux (RHEL) EL7 distribution flavors.
It also requires RHEL/CentOS 7.4 or higher since it provides a newer python-virtualenv package (1.10.1-4.el7+) which fixes compatibility with Python 3 (for more details, see: https://bugzilla.redhat.com/show_bug.cgi?id=1411685).
If you need support for other flavors, feel free to submit a pull request.
remote_user
variable is automatically set with running whoami
command as user who connects to the server.
Name | Type | Description | Mandatory | Default |
---|---|---|---|---|
common_include_security |
boolean | Specify if part of the role in charge of security is played or not. | no | true |
common_include_guest_additions |
boolean | Specify if part of the role in charge of installing the VirtualBox's guest additions is played or not. | no | false |
common_hostname |
string | Hostname of the server. | no | "{{ inventory_hostname }}" |
common_rhel_repos_for_epel |
list | List of repository ids that need to be enabled on RHEL machines for the EPEL repository. | no |
|
common_python3_enabled |
boolean | Install Python 3.4 if true . |
no | false |
common_python36_enabled |
boolean | Install Python 3.6 if true . |
no | false |
common_selinux_permisive |
boolean | Set SELinux to permisive mode if true . |
no | false |
common_ssh_allowed_ips |
list | List of ip addresses from which firewall will allow ssh connection. Warning If list is empty, all ssh connections will be allowed. |
no | [] |
common_ssh_authorized_keys |
list | List of public ssh keys which will be
added to remote_user 's
authorized_keys file . |
no | [] |
vaulted_common_root_password |
string |
Warning Password will be disabled if this setting is left blank. |
no | "" |
vaulted_common_user_password |
string | remote_user 's password. It must be
hashed and stored in Ansible Vault for
security reasons. See Ansible
documentation for more details. |
no | |
common_root_ps1 |
string | Value of root 's PS1 bash variable
if defined. |
no | "${BGREEN}\u@\h${NORMAL}:${BBLUE}\w${NORMAL}\\$" |
common_user_ps1 |
string | Value of remote_user 's PS1 bash
variable if defined. |
no | "${BLUE}(${RED}\w${BLUE}) ${NORMAL}\h ${RED}\\$ ${NORMAL}" |
common_virtualbox_dist_dir |
string | Path where VirtualBox guest additions will be downloaded and extracted. | no | /opt/virtualbox |
No dependencies.
To use this role add this to your playbook:
- hosts: servers
roles:
- { role: domenblenkus.common }
Licensed under the GPLv3 License. See the COPYING file for details.