mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
247d4a992a
platform. High quality, enterprise ready messaging. WWW: https://mq.dev.java.net/ PR: ports/141411 Submitted by: Radim Kolar <hsn at sanatana.iol.cz> Feature safe: yes
14 lines
312 B
Bash
14 lines
312 B
Bash
#! /bin/sh
|
|
#
|
|
# Removes unchanged configuration files
|
|
#
|
|
if [ "$2" = "DEINSTALL" ]; then
|
|
if [ ! -d $PKG_PREFIX/etc/mq ]; then exit 1;fi
|
|
cd $PKG_PREFIX/etc/mq
|
|
for cfgfile in imqbrokerd.conf imqenv.conf passfile; do
|
|
if cmp -s $cfgfile.sample $cfgfile; then
|
|
rm $cfgfile
|
|
fi
|
|
done
|
|
fi
|