summaryrefslogtreecommitdiff
path: root/community-testing/vhba-module/vhba-module.install
blob: 3704282a7c43434adf8e4dfe17d57f8686acfd07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
_updatemod() {
  echo "  > Updating module dependencies..."
  EXTRAMODULES='extramodules-3.5-ARCH'
  depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
}

post_install() {
  post_upgrade
}

post_upgrade() {
  getent group cdemu &>/dev/null || groupadd cdemu
  _updatemod
}

post_remove() {
  _updatemod
  groupdel cdemu
}

# vim:set ts=2 sw=2 et: