Package plymouth: Скрипты

Post install

1
2
3
4
5
6
7
8
9
if [ $1 = 1 ]; then
         /sbin/chkconfig --add plymouth
fi
if [ $1 = 2 ]; then
         /sbin/chkconfig plymouth resetpriorities
fi

[ -f /var/lib/plymouth/boot-duration ] || cp -f /usr/share/plymouth/default-boot-duration /var/lib/plymouth/boot-duration
[ -f /var/lib/plymouth/shutdown-duration ] || cp -f /usr/share/plymouth/default-shutdown-duration /var/lib/plymouth/shutdown-duration
Pre uninstall

1
2
3
if [ $1 = 0 ]; then
         /sbin/chkconfig --del plymouth
fi