10 lines
216 B
Bash
10 lines
216 B
Bash
#!/bin/sh
|
|
if [ $1 == 0 ]; then
|
|
DST=${RPM_INSTALL_PREFIX}
|
|
mkdir -p ${DST}/plug/business/
|
|
touch ${DST}/plug/conflist.inf
|
|
|
|
sed -i '/quic.inf/d' ${DST}/plug/conflist.inf
|
|
sed -i '/QUIC/d' ${DST}etc/entrylist.conf
|
|
fi
|