V-38671: Remove sendmail

Change-Id: I5c909d6d923c5b13795bd0f35437b20f3be83657
This commit is contained in:
Major Hayden 2015-10-09 14:37:46 -05:00
parent 241f6cd074
commit 90b6e48f21
3 changed files with 20 additions and 0 deletions

View File

@ -46,6 +46,7 @@ disable_services:
remove_services:
rsh-server: yes # V-38591
ldap-server: yes # V-38627
sendmail: yes # V-38671
telnet_server: yes # V-38587
tftp-server: yes # V-38606
xinetd: yes # V-38584

View File

@ -0,0 +1,9 @@
Although neither Ubuntu nor openstack-ansible install or configure sendmail
by default, the Ansible task will remove the sendmail package if it exists on
the system.
To opt-out of this change, adjust the following Ansible variable to ``no``:
.. code-block:: yaml
remove_services['sendmail']: no

View File

@ -128,3 +128,13 @@
- services
- cat3
- V-38627
- name: V-38671 - Remove sendmail
apt:
name: sendmail
state: absent
when: remove_services['sendmail'] | bool
tags:
- services
- cat2
- V-38671