13 lines
292 B
Bash
13 lines
292 B
Bash
#!/bin/sh
|
|
if [ $1 == 0 ]; then
|
|
CONFILE=conf/radius/radius.conf
|
|
DST=${RPM_INSTALL_PREFIX}
|
|
|
|
mkdir -p ${DST}/plug/business/
|
|
touch ${DST}/plug/conflist.inf
|
|
touch ${DST}/${CONFILE}
|
|
|
|
sed -i '/fw_mail_plug.inf/d' ${DST}/plug/conflist.inf
|
|
sed -i '/\[RADIUS_PLUG\]/,+8d' ${DST}/${CONFILE}
|
|
fi
|