1
2
3
4
5
6
7
8
9
10 | if [ -z "$2" ]; then
# Slight hack to make dpkg-maintscript-helper work when this is
# the first install of squid.
dollar_one=$1
shift
if [ $# -gt 1 ]; then
shift
fi
set -- $dollar_one 3.5 "$@"
fi
|