mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:57:13 +08:00
20 lines
448 B
Plaintext
20 lines
448 B
Plaintext
|
|
post_install() {
|
|
cat <<EOT
|
|
----------------------------------------------------------------------------
|
|
> Configuration: /etc/conf.d/splash
|
|
> WIKI page: http://wiki.archlinux.org/index.php/Fbsplash
|
|
----------------------------------------------------------------------------
|
|
EOT
|
|
}
|
|
|
|
## arg 1: the new package version
|
|
## arg 2: the old package version
|
|
post_upgrade() {
|
|
if [[ $( vercmp $2 1.2.7 ) -lt 0 ]]; then
|
|
post_install
|
|
fi
|
|
}
|
|
|
|
# EOF
|