blob: c0ad39e36a28ee4387008e10c8f7b5ae96051ffb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# 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
}
|