Fix spell in journald script (#65)

This commit is contained in:
Pascal Vizeli 2018-07-02 19:58:00 +02:00 committed by Pascal Vizeli
parent 15fc1f447e
commit e51a0811a1

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