Sophie

Sophie

distrib > Mageia > 3 > i586 > media > core-updates > by-pkgid > 33b45cfd58b5f0633413f22c0303a6a1 > scriptlet

kernel-vserver-source-3.10.58-0.vs2.3.6.8.1.mga3-1-1.mga3.noarch.rpm

PREUN

/bin/sh
for i in /lib/modules/3.10.58-vserver-0.vs2.3.6.8.1.mga3/{build,source}; do
	if [ -L $i ]; then
		if [ "$(readlink $i)" = "/usr/src/linux-3.10.58-vserver-0.vs2.3.6.8.1.mga3" ]; then
			rm -f $i
		fi
	fi
done
exit 0


###
### file lists
###

# kernel

POSTIN

/bin/sh
if [ -d "/lib/modules/3.10.58-vserver-0.vs2.3.6.8.1.mga3" ]; then
	if [ ! -L $i/build -a ! -L $i/source ]; then
		rm -f $i/{build,source}
	        ln -sf /usr/src/linux-3.10.58-vserver-0.vs2.3.6.8.1.mga3 \
	               $i/build
	        ln -sf /usr/src/linux-3.10.58-vserver-0.vs2.3.6.8.1.mga3 \
	               $i/source
	fi
fi