mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 21:47:13 +08:00
26 lines
739 B
Plaintext
26 lines
739 B
Plaintext
|
post_install() {
|
||
|
echo ">"
|
||
|
echo "> ATTENTION!!!"
|
||
|
echo "----------------------------------------------------------"
|
||
|
echo "> The scripts for fbsplash have been rewritten"
|
||
|
echo "> again and are now provided by the package"
|
||
|
echo "> > > initscripts-extras-fbsplash < < <"
|
||
|
echo "----------------------------------------------------------"
|
||
|
echo "> This package doesn't include a theme anymore."
|
||
|
echo "> You need to install one separately."
|
||
|
echo "----------------------------------------------------------"
|
||
|
echo "> Please read http://wiki.archlinux.org/index.php/Fbsplash"
|
||
|
echo "> for more details. "
|
||
|
echo "----------------------------------------------------------"
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
$op $*
|
||
|
|
||
|
#EOF
|