#!/bin/sh if [ "x${1}" = 'xconfigure' ]; then while read link name prio; do if [ -e "${link}.busybox" ]; then update-alternatives --install "${link}" "${name}" \ "${link}.busybox" "${prio}" fi done