mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
28 lines
780 B
Text
28 lines
780 B
Text
# arg 1: the new package version
|
|
post_install() {
|
|
echo "=========================================================="
|
|
echo "| IMPORTANT: Unless you want to run dnsmasq as root, you |"
|
|
echo "| must either enable CONFIG_SECURITY_CAPABILITIES in |"
|
|
echo "| your kernel or add capability to the MODULES array |"
|
|
echo "| in /etc/rc.conf. |"
|
|
echo "| For more details on configuring dnsmasq, visit: |"
|
|
echo "| http://www.thekelleys.org.uk/dnsmasq/doc.html |"
|
|
echo "=========================================================="
|
|
/bin/true
|
|
}
|
|
|
|
# arg 1: the new package version
|
|
# arg 2: the old package version
|
|
post_upgrade() {
|
|
/bin/true
|
|
}
|
|
|
|
# arg 1: the old package version
|
|
pre_remove() {
|
|
/bin/true
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
|
|
$op $*
|