summaryrefslogtreecommitdiffstats
path: root/abs/core/aufs/aufs.install
blob: 42d039a79d324d8b5ab4c365540f5ce2095b4b04 (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.26-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.26-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.26-ARCH
  depmod -v $KERNEL_VERSION > /dev/null 2>&1
  /bin/true
}

op=$1
shift
$op $*