diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-09-20 14:42:21 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-09-20 14:42:21 -0300 |
commit | f8fe4203b5f5cc7a9e6ecbb5ef5a6494f099318d (patch) | |
tree | 8593829b6f2b9c4f38e190bee880caa68f855bd8 /libre/virtualbox-libre/virtualbox-libre-host-source.install | |
parent | ffc0a61a2b0b77c06b581c20e1d6241e7e0d04cd (diff) | |
parent | 0c0abc5fe8b0451e2c2211e3c47f0d8e8193667c (diff) | |
download | abslibre-f8fe4203b5f5cc7a9e6ecbb5ef5a6494f099318d.tar.gz abslibre-f8fe4203b5f5cc7a9e6ecbb5ef5a6494f099318d.tar.bz2 abslibre-f8fe4203b5f5cc7a9e6ecbb5ef5a6494f099318d.zip |
Merge branch 'master' of ssh://gparabola/srv/git/abslibre
Diffstat (limited to 'libre/virtualbox-libre/virtualbox-libre-host-source.install')
-rwxr-xr-x | libre/virtualbox-libre/virtualbox-libre-host-source.install | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/libre/virtualbox-libre/virtualbox-libre-host-source.install b/libre/virtualbox-libre/virtualbox-libre-host-source.install new file mode 100755 index 000000000..6a3994c8d --- /dev/null +++ b/libre/virtualbox-libre/virtualbox-libre-host-source.install @@ -0,0 +1,29 @@ +#/bin/sh + +# arg 1: the new package version +post_install() { + cat << EOF +==> To build and install your modules run dkms install vboxhost/${1%-*} +==> To do this automatically at startup you can add dkms in your DAEMONS +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 vboxhost/${1%-*} --all >/dev/null || true +} + +# vim:set ts=2 sw=2 ft=sh et: |