summaryrefslogtreecommitdiff
path: root/libre/vhba-module-libre/vhba-module.install
blob: b2a49a26180f5f2792a367192670c22fda1e3086 (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-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: