summaryrefslogtreecommitdiff
path: root/libre/vhba-module-libre/vhba-module.install
blob: 9f376f541b4fb99349e6a3bee957a72d617b2e61 (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.7-LIBRE'
  depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
}

post_install() {
  post_upgrade
}

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

post_remove() {
  _updatemod
  groupdel cdemu
}

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