blob: cde6ddc0e77f7cab56f5b8e95701b50cdbd42664 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
#
# $FreeBSD$
#
# remove lockfile so that deinstallation can complete
if [ x$2 != xDEINSTALL ]; then
exit
fi
echo "Removing lockfiles, if any ..."
rm -rf ${PKG_PREFIX}/grass5/locks/*
|