mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
c557ae2d1b
PR: ports/90457 Submitted by: maintainer Approved by: sem(mentor)
10 lines
212 B
Bash
10 lines
212 B
Bash
#!/bin/sh
|
|
|
|
[ "$2" != "DEINSTALL" ] && exit 0
|
|
|
|
for f in %%LOCAL_CONF_FILES%%; do
|
|
if cmp -s "${PKG_PREFIX}/etc/epylog/$f" "${PKG_PREFIX}/etc/epylog/$f.default"; then
|
|
rm -f "${PKG_PREFIX}/etc/epylog/$f"
|
|
fi
|
|
done
|