Sophie

Sophie

distrib > Mandriva > 9.0 > x86_64 > by-pkgid > c3aade477233667d4b250807b5a7adf3 > scriptlet

zsh-4.0.6-4mdk.x86_64.rpm

POSTIN

/bin/sh
if [ ! -f /etc/shells ]; then
	echo "/bin/zsh" > /etc/shells
else
	grep '^/bin/zsh' /etc/shells > /dev/null || echo "/bin/zsh" >> /etc/shells
fi
if [[ -f /usr/share/info/zsh.info.bz2 ]];then /sbin/install-info /usr/share/info/zsh.info.bz2 --dir=/usr/share/info/dir;fi

POSTUN

/bin/sh
if [ ! -x /bin/zsh ]; then
	grep -v '^/bin/zsh$' /etc/shells | grep -v '^/bin/zsh$'> /etc/shells.rpm
	mv /etc/shells.rpm /etc/shells
fi
if [ "$1" = "0" ]; then if [[ -f /usr/share/info/zsh.info.bz2 ]];then /sbin/install-info /usr/share/info/zsh.info.bz2 --dir=/usr/share/info/dir --remove ;fi; fi