diff options
Diffstat (limited to 'badblocks.pkg/postinst')
-rw-r--r-- | badblocks.pkg/postinst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/badblocks.pkg/postinst b/badblocks.pkg/postinst new file mode 100644 index 0000000..7565d24 --- /dev/null +++ b/badblocks.pkg/postinst @@ -0,0 +1,8 @@ +#!/bin/sh + +if [ x"${1}" = x'configure' ]; then + while read link; do + update-alternatives --install "${link}" "${link##*/}" \ + "${link}.e2p" 30 + done </usr/share/badblocks/alternatives +fi |