diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-10-06 09:03:26 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-10-06 09:03:26 +0200 |
commit | bb1ab7a709ec0d38357b2df0b01f6f55c49baf7a (patch) | |
tree | 5028067fb38c0b4cef7a44dcf14a6906e3216242 /community/alpine-desktop/alpine-desktop.post-install | |
parent | b0400c5d0f6d977b933403b426cca4ff66e2ffee (diff) | |
download | aports-bb1ab7a709ec0d38357b2df0b01f6f55c49baf7a.tar.bz2 aports-bb1ab7a709ec0d38357b2df0b01f6f55c49baf7a.tar.xz |
community/alpine-desktop: moved from main
Diffstat (limited to 'community/alpine-desktop/alpine-desktop.post-install')
-rw-r--r-- | community/alpine-desktop/alpine-desktop.post-install | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/community/alpine-desktop/alpine-desktop.post-install b/community/alpine-desktop/alpine-desktop.post-install new file mode 100644 index 0000000000..0b52acc598 --- /dev/null +++ b/community/alpine-desktop/alpine-desktop.post-install @@ -0,0 +1,9 @@ +#!/bin/sh + +# add mousedev to /etc/modules if not already there + +if ! grep -w -q ^mousedev /etc/modules; then + echo mousedev >> /etc/modules +fi +modprobe mousedev || true + |