summaryrefslogtreecommitdiffstats
path: root/net/openmq/pkg-deinstall
blob: fd6afbc22bbb9a2d77b72a1ad6cc7eb201aa6495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /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
OpenPOWER on IntegriCloud