When archiving logs do not compress the journals

Compressing the journals breaks them making it impossible to review the
data later. This change adds anything with the suffix ".journal" to the
list of files the "find_files" function will return.

Change-Id: If521f1186797a74816b7a2d1eb8b0e501d6719e1
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
Kevin Carter 2018-08-15 11:50:25 -05:00
parent a32f3a040d
commit 566a764915
No known key found for this signature in database
GPG Key ID: 9443251A787B9FB3
1 changed files with 1 additions and 0 deletions

View File

@ -163,6 +163,7 @@ function find_files {
! -name "*.gz" \
! -name '*.html' \
! -name '*.subunit' \
! -name "*.journal" \
! -name 'ansible.sqlite'
}