blob: 94ddb0d9bdafdbac180729c0cc6bc590e3fd7987 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
if [ $1 == 0 ]; then
DST=${RPM_INSTALL_PREFIX}
mkdir -p ${DST}/plug/business/
touch ${DST}/plug/conflist.inf
sed -i '/dns.inf/d' ${DST}/plug/conflist.inf
sed -i '/DNS/d' ${DST}etc/entrylist.conf
fi
|