Ensure aide-common package is installed

For Ubuntu, the aide-common package is required for all of the normal
utilities and scripts to be installed that normally ship with AIDE.
This patch ensures that aide-common is installed.

This is a manual backport of I1b3a383f34fa584c6b2f9f26ae00874c5bb5ef97
since master contains some extra logic for operating systems that
aren't supported in stable branches.

Change-Id: I32580df93fce0ba6357071fb6fcd3b16f0b7dfe1
This commit is contained in:
Major Hayden 2016-06-13 15:31:45 -05:00
parent 3db8201477
commit 0b966cc32d

View File

@ -15,8 +15,11 @@
- name: V-38489 - Install AIDE
apt:
name: aide
state: present
name: "{{ item }}"
state: present
with_items:
- aide
- aide-common
tags:
- cat2
- V-38489