Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-updates > by-pkgid > 1d45857572e6b8e7d9dc56957dc97019 > scriptlet

kernel-tmb-source-4.4.55-1.mga5-1-1.mga5.noarch.rpm

PREUN

/bin/sh
for i in /lib/modules/4.4.55-tmb-*-1.mga5/{build,source}; do
	if [ -L $i ]; then
		if [ "$(readlink $i)" = "/usr/src/4.4.55-tmb-1.mga5" ]; then
			rm -f $i
		fi
	fi
done
exit 0

#
# kernel-source-latest: virtual rpm
#

POSTIN

/bin/sh
for i in /lib/modules/4.4.55-tmb-*-1.mga5; do
        if [ -d $i ]; then
		if [ ! -L $i/build -a ! -L $i/source ]; then
            		ln -sf /usr/src/4.4.55-tmb-1.mga5 $i/build
            		ln -sf /usr/src/4.4.55-tmb-1.mga5 $i/source
		fi
        fi
done