Sunil Mohan Adapa 35c70861dc
logging: Remove references to old log files
- Remove access/error log references in configuration files and tests.

- Ensure that /var/log/plinth directory is not created anymore.

Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2018-12-30 13:45:23 -05:00

18 lines
190 B
Bash
Executable File

#!/bin/sh
set -e
case "$1" in
purge)
deluser --system --quiet plinth || true
rm -rf /var/lib/plinth
# Remove legacy directory too
rm -rf /var/log/plinth
;;
esac
#DEBHELPER#
exit 0