blob: 2b439ac285d98b24def96d6dbea4c52161ec7d6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
if [ $1 == 0 ]; then
DST=${RPM_INSTALL_PREFIX}
mkdir -p ${DST}/plug/protocol/
touch ${DST}/plug/conflist.inf
mkdir -p ${DST}/etc/
touch ${DST}/etc/entrylist.conf
sed -i '/ssl.inf/d' ${DST}/plug/conflist.inf
sed -i '/SSL/d' ${DST}/etc/entrylist.conf
sed -i '/ssl_defer.inf/d' ${DST}/plug/conflist.inf
fi
|