summarylogtreecommitdiffstats
path: root/accel-ppp-ipoe-dkms-git.install
blob: ac41b74e17a277ca0653b8115281361af71680ba (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
#/bin/sh

# arg 1:  the new package version
post_install() {
  dkms add accel-ppp-ipoe/${1%-*}
  cat << EOF
==> To build and install your modules run: dkms install accel-ppp-ipoe/${1%-*}
==> To do this automatically at startup run: systemctl enable dkms.service
EOF
}

# arg 1:  the new package version
# arg 2:  the old package version
pre_upgrade() {
  pre_remove "$2"
}

# arg 1:  the new package version
# arg 2:  the old package version
post_upgrade() {
  post_install "$1"
}

# arg 1:  the old package version
pre_remove() {
  # Remove modules using dkms
  [ -n "${1%-*}" ] && dkms remove accel-ppp-ipoe/${1%-*} --all &>/dev/null || true
}

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