mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
- 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>
18 lines
190 B
Bash
Executable File
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
|