mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
25 lines
303 B
Text
25 lines
303 B
Text
|
pre_install() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_install() {
|
||
|
echo "-- You should add 'news' user and 'news' group and chown /var/spool/news!"
|
||
|
}
|
||
|
|
||
|
pre_upgrade() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
echo "-- You may remove 'news' user and 'news' group!"
|
||
|
}
|
||
|
|