Hello,

On 15 Jul 2016, at 15:17, Steve Grubb <sgrubb@redhat.com> wrote:
On Friday, July 15, 2016 2:52:02 PM EDT Mateusz Piotrowski wrote:
Is there an easier way to get the latest Linux Audit version on my system?
Why wouldn't you start with the distribution tar file?
http://people.redhat.com/sgrubb/audit/audit-2.6.5.tar.gz

I was able to install the latest version from the tar file using the following commands. Thanks Steve!

curl -O http://people.redhat.com/sgrubb/audit/audit-2.6.5.tar.gz
gzip -d audit-2.6.5.tar.gz
tar xf audit-2.6.5.tar
cd audit-2.6.5
yum install autoconf automake libtool tcp_wrappers-devel openldap-devel
# Python and libcap-ng didn't work for me.
# This is why I set --with-python and --with-libcap-ng to no instead to yes.
./configure --sbindir=/sbin --with-python=no --with-libwrap --enable-gssapi-krb5=yes --with-libcap-ng=no
make
make install

My CentOS is now running auditd version 2.6.5 (according to information within /var/log/audit/audit.log).


Cheers!

-m