~ci-train-bot/ubuntu-system-image/system-image-ubuntu-xenial-landing-023

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

set -e

# On purge, remove the log file and directory, as well as the lib directory
# and configuration file.

case "$1" in
    purge)
        rm -rf /var/log/system-image
        rm -rf /var/lib/system-image
        rm -rf /etc/system-image
        ;;
    *)
        ;;
esac

#DEBHELPER#

exit 0