mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
11 lines
305 B
Text
11 lines
305 B
Text
# arg 1: the new package version
|
|
post_install() {
|
|
[ -f var/state/dhcp/dhcpd.leases ] || : >var/state/dhcp/dhcpd.leases
|
|
#echo "If dhcpd doesn't start, ensure the ipv6 kernel module is loaded."
|
|
}
|
|
|
|
# arg 1: the new package version
|
|
# arg 2: the old package version
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|