summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/ivtv-utils/ivtv-utils.install
blob: 4966d4a6c48c493dc97319a9ef2998a1366018bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
pre_install() {
	/bin/true
}

post_install() {
  # updating module dependencies
  echo ">>> Updating module dependencies. Please wait ..."
  KERNEL_VERSION=2.6.22-ARCH
  depmod -v $KERNEL_VERSION > /dev/null 2>&1
  /bin/true
}

post_upgrade() {
  # updating module dependencies
  echo ">>> Updating module dependencies. Please wait ..."
  KERNEL_VERSION=2.6.22-ARCH
  depmod -v $KERNEL_VERSION > /dev/null 2>&1
  /bin/true
}

post_remove() {
  # updating module dependencies
  echo ">>> Updating module dependencies. Please wait ..."
  KERNEL_VERSION=2.6.22-ARCH
  depmod -v $KERNEL_VERSION > /dev/null 2>&1
  /bin/true
}

op=$1
shift
$op $*