Fix spell in journald script (#65)

This commit is contained in:
Pascal Vizeli 2018-07-02 19:58:00 +02:00 committed by GitHub
parent 11b1946cd7
commit f8fa170e2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ MACHINE_ID=$(cat /etc/machine-id)
CURRENT_LOGS=/var/log/journal/${MACHINE_ID}
# Cleanup
if [ ! -d ${CURRENT_LOGS} ];
if [ ! -d ${CURRENT_LOGS} ]; then
rm -rf /var/log/journal/*
exit 0
fi