mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
218 B
Text
21 lines
218 B
Text
post_install() {
|
|
cat << EOF
|
|
|
|
Check out the /opt/chkrootkit directory, run chkrootkit as root this way:
|
|
# ./chkrootkit
|
|
|
|
EOF
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
/bin/true
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
|
|
$op $*
|