diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-07-29 18:22:26 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-07-29 18:22:26 -0400 |
commit | 756056e5cbfe51dbdf270f88a8fe2e1d3fbba804 (patch) | |
tree | 06c83c302248b4241149065ab8d6150d095a05d8 /libre/virtualbox-libre/virtualbox-libre-source.install | |
parent | 126d73453c3a886c58a627517f9f796f5a8123c9 (diff) | |
parent | 68aa0053f1ccfe28e60c6e23fa3cea017af33edc (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'libre/virtualbox-libre/virtualbox-libre-source.install')
-rw-r--r-- | libre/virtualbox-libre/virtualbox-libre-source.install | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/libre/virtualbox-libre/virtualbox-libre-source.install b/libre/virtualbox-libre/virtualbox-libre-source.install new file mode 100644 index 000000000..6a3994c8d --- /dev/null +++ b/libre/virtualbox-libre/virtualbox-libre-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: |