summarylogtreecommitdiffstats
path: root/ipt_iftag.install
blob: 4ce6a8b84a056e1a202858fbdb0af7939c7e907e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
post_install() {
  linux_custom="ARCH"
  kernver="`pacman -Ql linux|gawk 'match($0, /^(.*)modules\/([0-9.-]+-(.*)-'${linux_custom}')\/$/, a) {print a[2]}'`"
  echo -e "Probe modules"
  depmod ${kernver}
}

post_remove() {
  post_install
}

post_upgrade() {
  post_install
}