diff options
author | P. J. McDermott <pj@pehjota.net> | 2015-09-06 12:39:50 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2015-09-06 12:43:22 (EDT) |
commit | 0d955b1f5f21967fb9b80b7ecb9455a2f8391f3d (patch) | |
tree | 065bd99094c2b1a1b7ed25a2ad37ec5f646eca1d /pciutils.pkg/postinst | |
parent | 55b9c5e5dd730cdd88a192ce1533a98db7d7d3f7 (diff) |
Manage lspci with update-alternatives
Diffstat (limited to 'pciutils.pkg/postinst')
-rw-r--r-- | pciutils.pkg/postinst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pciutils.pkg/postinst b/pciutils.pkg/postinst new file mode 100644 index 0000000..12f7a19 --- /dev/null +++ b/pciutils.pkg/postinst @@ -0,0 +1,6 @@ +#!/bin/sh + +if [ "x${1}" = 'xconfigure' ]; then + update-alternatives --install /usr/bin/lspci lspci \ + /usr/bin/lspci.pciutils 20 +fi |