1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769
|
#!/bin/sh
#
# Replacement for check-vm using (almost) explicit package lists for
# each distro-version-architecture combination
#
LANG=C.UTF-8
_usage()
{
echo >&2 "Usage: $0 [options]"
echo >&2
echo >&2 " -A arch override platform arch"
echo >&2 " -D distro override platform distro"
echo >&2 " -c check packing list"
echo >&2 " -i tag include only lines with a tag"
echo >&2 " -m list only missing packages"
echo >&2 " -n report my packing-list file and quit"
echo >&2 " -v verbose (debugging)"
echo >&2 " -V version override platform version"
echo >&2 " -x tag exclude lines with a tag"
exit 1
}
# on entry we have ...
# $tmp.list - packages from packing list, with optional -x and -i processing
# done
# $tmp.allpkgs - all available packages for this platform
#
_do_check()
{
# dredge manifest for ALL packages for this distro
#
# First get any required packages
#
_parse_file $home/other-packages/require \
| sed >$tmp.require \
-e 's/{//g' \
-e 's/}//g' \
# end
[ -s $tmp.require ] && $very_verbose && echo >&2 "require: `cat $tmp.require`"
# Then any skipped packages
#
_parse_file $home/other-packages/skip \
| sed >$tmp.skip \
-e 's/{//g' \
-e 's/}//g' \
# end
[ -s $tmp.skip ] && $very_verbose && echo >&2 "skip: `cat $tmp.skip`"
# And any unavailable packages
#
_parse_file $home/other-packages/unavailable \
| sed >$tmp.na \
-e 's/{//g' \
-e 's/}//g' \
# end
[ -s $tmp.na ] && $very_verbose && echo >&2 "unavailable: `cat $tmp.na`"
# And then process the manifest.
# The packaging types (tags @ start of manifest lines) we know about.
#
cat <<End-of-File >$tmp.tags
dpkg Ubuntu Debian LinuxMint MX
rpm RHEL Fedora CentOS openSUSE SUSE SLES
emerge Gentoo
pkgin NetBSD
pkg_add OpenBSD
F_pkg FreeBSD
S_pkg OpenIndiana
slackpkg Slackware
pacman ArchLinux
brew Darwin
End-of-File
tag=`sed -n <$tmp.tags -e 's/ / /g' -e 's/$/ /' -e "/ $distro /s/ .*//p"`
if [ -z "$tag" ]
then
echo >&2 "Botch: can't get manifest tag for \"$distro\""
exit
fi
rm -f $tmp.matched
awk <$home/other-packages/manifest '{ print NR ":" $0 }' \
| grep ":$tag?" \
| sed \
-e 's/[ ]*#.*//' \
-e 's/:[^[]*\[/ /' \
-e 's/ *$//' \
-e 's/ *]$//' \
-e 's/ cpan([^)]*) / /' \
-e 's/ pip3([^)]*) / /' \
-e 's/([^)]*)//' \
-e 's/ or / /g' \
| while read lineno pkgs
do
$very_verbose && echo >&2 "manifest:$lineno $pkgs"
rm -f $tmp.havereq
for pkg in $pkgs
do
for req_pkg in `cat $tmp.require`
do
if echo "$pkg" | grep "^$req_pkg$" >/dev/null
then
# one of the packages mentioned on this manifest line
# is required, so assume that's a tie-breaker amongst
# the alternatives
#
touch $tmp.havereq
break
fi
done
done
# if at least one package from the manifest line is in
# the list and available, then we're done
#
rm -f $tmp.ok
for pkg in $pkgs
do
[ "$pkg" = "N/A" ] && continue
pkg_re=`echo "$pkg" | sed -e 's;/;\\\\/;g'`
if awk -F '|' <$tmp.list '
BEGIN { sts=1 }
{ for (i = 1; i <= NF; i++) {
if ($i == "'"$pkg"'" || $i ~ /^'"$pkg_re"'$/) {
print $0 >>"'$tmp.matched'"
sts=0
exit
}
}
}
END { exit sts }'
then
# included in list, is it available?
#
avail="`grep "^$pkg\$" <$tmp.allpkgs`"
if [ -z "$avail" ]
then
echo "manifest:$lineno $pkg: in packing list, but not available?"
else
touch $tmp.ok
# keep going so we check all the pkg in $pkgs from the
# manifest
fi
fi
done
if [ ! -f $tmp.ok ]
then
# no match from the list, so reprocess the packages in the
# manifest line looking for available packages as candidates
# to be added to the list
#
for pkg in $pkgs
do
# not in list, unless it is to be skipped, or not available
# or we have a required package for this manifest line,
# is it available?
#
rm -f $tmp.skip_me
for skip_pkg in `cat $tmp.skip`
do
skip_pkg_re=`echo "$skip_pkg" | sed -e 's;/;\\\\/;g'`
if echo "$pkg" | awk '
BEGIN { sts=1 }
{ for (i = 1; i <= NF; i++) {
if ($i == "'"$skip_pkg"'" || $i ~ /^'"$skip_pkg_re"'$/) {
sts=0
exit
}
}
}
END { exit sts }'
then
$very_verbose && echo >&2 "$pkg ($skip_pkg): skipped"
touch $tmp.skip_me
break
fi
done
rm -f $tmp.na_me
for na_pkg in `cat $tmp.na`
do
na_pkg_re=`echo "$na_pkg" | sed -e 's;/;\\\\/;g'`
if echo "$pkg" | awk '
BEGIN { sts=1 }
{ for (i = 1; i <= NF; i++) {
if ($i == "'"$na_pkg"'" || $i ~ /^'"$na_pkg_re"'$/) {
sts=0
exit
}
}
}
END { exit sts }'
then
$very_verbose && echo >&2 "$pkg ($na_pkg): not available"
touch $tmp.na_me
break
fi
done
if [ ! -f $tmp.skip_me -a ! -f $tmp.na_me ]
then
if [ ! -f $tmp.havereq ]
then
avail="`grep "^$pkg\$" <$tmp.allpkgs`"
if [ -n "$avail" ]
then
if [ "$pkg" = "$avail" ]
then
echo "manifest:$lineno $pkg: not in packing list, but available?"
else
navail=`echo "$avail" | wc -w | sed -e 's/ //g'`
if [ "$navail" -eq 1 ]
then
echo "manifest:$lineno $pkg: not in packing list, but $avail available?"
elif [ "$navail" -le 2 ]
then
echo "manifest:$lineno $pkg: not in packing list, but `echo "$avail" | tr '\012' ' ' | sed -e 's/ $//' -e 's/ / and /'` available?"
else
echo "manifest:$lineno $pkg: not in packing list, but `echo "$avail" | tr '\012' ' ' | sed -e 's/ .* \([^ ][^ ]*\) / ... \1/'` available?"
fi
fi
fi
fi
fi
done
fi
done
# are the required ones all there?
#
for pkg in `cat $tmp.require`
do
if grep -E "(^$pkg )|(^$pkg$)" <$tmp.list >/dev/null
then
: OK
else
echo "$pkg: required but not in packing list"
fi
done
# and are all the packages in the packing list really available?
#
sed <$tmp.list -e '/cpan(/d' -e '/pip3(/d' \
| tr '|' '\012' \
| while read pkg
do
avail="`grep "^$pkg\$" <$tmp.allpkgs`"
if [ -z "$avail" ]
then
echo "$pkg: in packing list but not available"
fi
done
# and does the packing list contain lines that do not match the
# manifest?
if [ -s $tmp.matched ]
then
sed <$tmp.list -e '/cpan(/d' -e '/pip3(/d' \
| sort -o $tmp.list
sort -o $tmp.matched $tmp.matched
comm -23 $tmp.list $tmp.matched >$tmp.no-manifest
if [ -s $tmp.no-manifest ]
then
echo "In packing list, but not in manifest ..."
fmt -72 <$tmp.no-manifest | sed -e 's/^/ /'
fi
fi
# any duplicates in the packing list are also a problem
#
sort $tmp.list | uniq -c \
| sed -e '/^ *1 /d' -e 's/^ *[0-9][0-9]* //' >$tmp.tmp
if [ -s $tmp.tmp ]
then
echo "Duplicated in packing list ..."
fmt -72 <$tmp.tmp | sed -e 's/^/ /'
fi
}
LC_COLLATE=POSIX; export LC_COLLATE
verbose=false
very_verbose=false
include=''
exclude=''
missing=false
check=false
nflag=false
while getopts 'A:cD:i:mnvV:x:?' p
do
case "$p"
in
A) Arch="$OPTARG"
;;
D) Distro="$OPTARG"
;;
c) check=true
;;
i) if [ -n "$exclude" ]
then
echo >&2 "Error: -x and -i are mutually exclusive"
exit
fi
include="$include $OPTARG"
;;
m) missing=true
;;
n) nflag=true
;;
v) if $verbose
then
very_verbose=true
else
verbose=true
fi
;;
V) Version="$OPTARG"
;;
x) if [ -n "$include" ]
then
echo >&2 "Error: -i and -x are mutually exclusive"
exit
fi
exclude="$exclude $OPTARG"
;;
?) _usage
# NOTREACHED
esac
done
shift `expr $OPTIND - 1`
[ $# -eq 0 ] || _usage
status=1 # failure is the default
if $very_verbose
then
tmp=tmp
else
tmp=/var/tmp/$$
trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
fi
rm -f $tmp.*
# Need directory where this script is located so we can find the other
# scripts and control files
#
home=`echo $0 | sed -e 's/\/*list-packages$//'`
if [ ! -f $home/whatami ]
then
echo >&2 "Botch: \$0=$0 -> bad \$home=$home ?"
exit 1
fi
if [ ! -f $home/packages.rc ]
then
echo >&2 "Botch: cannot find $home/packages.rc"
exit
fi
. $home/packages.rc
_setversions
# $distro, $version $full_version, $arch and $full_arch now set
# optionally over-ridden from the comand line ...
#
if [ -n "$Distro" ]
then
$verbose && echo >&2 "Info: forcing distro=$Distro (not $distro)"
distro="$Distro"
fi
if [ -n "$Version" ]
then
$verbose && echo >&2 "Info: forcing version=$Version (not $version)"
version="$Version"
fi
if [ -n "$Arch" ]
then
$verbose && echo >&2 "Info: forcing arch=$Arch (not $arch)"
arch="$Arch"
fi
# This gets a bit tricky as the match may be for a prefix of the ${version}
# and/or "any" in lieu of ${arch}
#
rm -f $tmp.found
_version="$version"
while true
do
for _arch in "${arch}" "any"
do
if [ -f "$home/package-lists/${distro}+${_version}+${_arch}" ]
then
echo "version=\"$_version\" arch=\"$_arch\"" >$tmp.found
break
fi
done
[ -s $tmp.found ] && break
_check="`echo $_version | sed -e 's/\.[0-9][0-9]*$//'`"
[ "$_check" = "$_version" ] && break
_version="$_check"
done
if [ -s $tmp.found ]
then
if $verbose
then
v_version="$version"
v_arch="$arch"
fi
eval `cat $tmp.found`
if $verbose
then
if [ "$v_version+$v_arch" = "$version+$arch" ]
then
echo >&2 "Info: exact match => packaging $distro+$version+$arch"
else
echo >&2 "Info: fuzzy match platform $distro+$v_version+$v_arch => packaging $distro+$version+$arch"
fi
fi
else
echo >&2 "Botch: $home/package-lists/${distro}+${version}+${arch}: no match found"
exit
fi
if $nflag
then
echo "$home/package-lists/${distro}+${version}+${arch}"
status=0
exit
fi
if [ -n "$exclude" ]
then
$very_verbose && [ -n "$exclude" ] && echo >&2 "Excluding tags:$exclude"
echo 's/$/ /' >$tmp.sed
for pkg in $exclude
do
echo "/ $pkg /d" >>$tmp.sed
done
sed -f $tmp.sed <"$home/package-lists/${distro}+${version}+${arch}"
elif [ -n "$include" ]
then
$very_verbose && [ -n "$include" ] && echo >&2 "Including only tags:$include"
echo 's/$/ /' >$tmp.sed
for pkg in $include
do
echo "/ $pkg /p" >>$tmp.sed
done
sed -n -f $tmp.sed <"$home/package-lists/${distro}+${version}+${arch}"
else
cat "$home/package-lists/${distro}+${version}+${arch}"
fi >$tmp.list
if $missing || $check
then
# Base on distro info, generate a list of currently installed packages
# in $tmp.installed and a list of all available packages in $tmp.allpkgs
#
rm -f $tmp.installed $tmp.allpkgs
rm -f $tmp.debug
case "$distro"
in
Ubuntu|Debian|LinuxMint|MX)
dpkg-query -W -f '${package} ${status}\n' \
| sed -n -e '/ installed$/s/ .*//p' >$tmp.installed
apt-cache dumpavail | sed -n -e '/^Package: /s///p' >$tmp.allpkgs
;;
RHEL|Fedora|CentOS|openSUSE|SUSE\ SLES|OpenMandriva|AmazonLinux)
rpm -qa --qf '%{NAME}\n' >$tmp.installed
if which zypper >/dev/null 2>&1
then
zypper --no-refresh packages 2>&1 \
| awk -F \| ' { print $3 }' \
| sed >$tmp.allpkgs \
-e 's/ *//g' \
# end
elif which dnf >/dev/null 2>&1
then
# note using dnf's system cache, so no metadata refresh,
# but -C is borked sometimes ...
#
for dnf_args in "-C" ""
do
echo "=== dnf $dnf_args list" >>$tmp.debug
sudo dnf $dnf_args list 2>&1 \
| tee -a $tmp.debug \
| sed >$tmp.allpkgs \
-e '1,/^[^ ]* [pP]ackages/d' \
-e 's/ .*//' \
-e 's/\.[^.]*$//' \
# end
[ -s $tmp.allpkgs ] && break
done
elif which yum >/dev/null 2>&1
then
# note using yum's system cache, so no metadata refresh
#
( yum -C list available; yum -C list installed ) 2>&1 \
| sed >$tmp.allpkgs \
-e '1,/^[^ ]* Packages/d' \
-e 's/ .*//' \
-e 's/\.[^.]*$//' \
# end
fi
;;
Gentoo)
equery list '*' | sed -e 's/.*].*] //' -e 's/-[0-9].*//' >$tmp.installed
# TODO $tmp.allpkgs
;;
NetBSD)
pkgin list | sed -e 's/-[0-9].*//' >$tmp.installed
# TODO $tmp.allpkgs
;;
OpenBSD)
pkg_info -a | sed -e 's/-[0-9].*//' >$tmp.installed
# expect lines like this ...
# <tr>...<a href="libsysstat-0.4.1p1.tgz">libsysstat-0.4.1p1.tgz</a>...
#
url="`cat /etc/installurl`/`uname -r`/packages/`uname -m`/"
$verbose && echo >&2 "Fetching list of available packages from $url ..."
curl -s $url \
| sed -n >$tmp.allpkgs \
-e '/a href=".*tgz">/{
s/\.tgz<\/a>.*/.tgz/
s/.*>//
s/-[0-9].*//
p
}'
;;
FreeBSD)
pkg info -a | sed -e 's/-[0-9].*//' >$tmp.installed
pkg search -L name . | sed -e 's/ .*//' >$tmp.allpkgs
;;
OpenIndiana)
pkg list -H | sed -e 's/ .*//' >$tmp.installed
pkg list -a | sed -e 's/ .*//' >$tmp.allpkgs
;;
Slackware)
ls /var/log/packages | sed -e 's/-[0-9].*//' >$tmp.installed
# lines after awk look like ...
# ./aspell-word-lists/aspell-cs-20040614_1-x86_64-5.txz
# ./n/openldap-client-2.4.42-x86_64-1.txz
#
for f in /var/lib/slackpkg/slackware64-filelist.gz \
/var/lib/slackpkg/extra-filelist.gz
do
[ -f "$f" ] || continue
zcat "$f" \
| awk '{ print $1 }' \
| sed \
-e 's/\-[0-9].*//' \
-e 's;.*/;;' \
# end
done >$tmp.allpkgs
;;
ArchLinux)
pacman -Qi | sed -n -e '/^Name /s/.* : //p' >$tmp.installed
pacman -Ss . \
| sed -n >$tmp.allpkgs -e '/^[^ ]/s/ .*//p'
;;
Darwin)
# TODO $tmp.installed
# TODO $tmp.allpkgs
:
;;
esac
if $missing && [ ! -f $tmp.installed ]
then
echo >&2 "Botch: can't generate tmp.installed for $distro"
exit
fi
if [ -s $tmp.allpkgs ]
then
sort <$tmp.allpkgs | uniq >$tmp.tmp
mv $tmp.tmp $tmp.allpkgs
else
[ -s $tmp.debug ] && cat >&2 $tmp.debug
ls -l $tmp.allpkgs >&2
echo >&2 "Botch: can't generate tmp.allpkgs for $distro"
exit
fi
fi
# map cpan and pip3 tags => cpan(...) and pip3(...)
#
sed <$tmp.list >$tmp.tmp \
-e 's/$/ /' \
-e 's/\(.*\) cpan/cpan(\1)/' \
-e 's/\(.*\) pip3/pip3(\1)/' \
-e 's/ $//' \
# end
mv $tmp.tmp $tmp.list
# do optional `cmd` expansion
#
if grep '`' $tmp.list >/dev/null
then
rm -f $tmp.tmp
cat $tmp.list | while read pkg
do
case "$pkg"
in
*'`'*'`'*)
eval echo $pkg >>$tmp.tmp
;;
*)
echo "$pkg" >>$tmp.tmp
;;
esac
done
mv $tmp.tmp $tmp.list
fi
# strip comments, remaining tags, white space and empty lines
#
sed -n <$tmp.list >$tmp.tmp \
-e 's/#.*//' \
-e 's/[ ]*|[ ]*/|/g' \
-e 's/[ ].*//' \
-e 's/[ ][ ]*//g' \
-e '/./p' \
# end
mv $tmp.tmp $tmp.list
if $check
then
_do_check
status=0
exit
fi
if $missing
then
# special handling for cpan() packages
#
$very_verbose && cp $tmp.list $tmp.list.before
rm -f $tmp.sed
grep '^cpan(' $tmp.list \
| sed -e 's/cpan(//' -e 's/)//' \
| while read module
do
if echo "use $module;" | perl >/dev/null 2>&1
then
echo "/cpan($module)/d" >>$tmp.sed
fi
done
if [ -f $tmp.sed ]
then
sed -f $tmp.sed <$tmp.list >$tmp.tmp
mv $tmp.tmp $tmp.list
if $very_verbose
then
echo >&2 "Diffs after cpan() mangling ..."
diff $tmp.list.before $tmp.list
fi
fi
if [ "$distro" = "ArchLinux" ]
then
# special handling for Arch Linux (pacman) naming of packages
# pacman -Qi (for tmp.installed) => gcc
# pacman -Ss (for tmp.allpkgs) => core/gcc
# and our packing list (tmp.list) uses the longer form ... so cull
# the prefix on the assumption that the probability of a name
# collision is really small, but then we need to do the matching
# the hard way to generate a list with the full package names
#
mv $tmp.list $tmp.tmp
cat $tmp.tmp \
| while read full_pkg
do
pkg=`echo $full_pkg | sed -e 's;^.*/;;'`
if grep "^$pkg\$" $tmp.installed >/dev/null
then
:
else
echo "$full_pkg" >>$tmp.list
fi
done
else
# strip all packages in both $tmp.list and $tmp.installed and
# leave the result in $tmp.list
#
tr '|' '\012' <$tmp.list | sort | uniq >$tmp.1
sort <$tmp.installed | uniq >$tmp.2
if $very_verbose
then
echo >&2 "Required:"
cat $tmp.1 >&2
echo >&2 "Installed:"
cat $tmp.2 >&2
fi
comm -23 $tmp.1 $tmp.2 >$tmp.tmp
# now we may have alternates installed ...
#
rm -f $tmp.newlist
touch $tmp.newlist
cat $tmp.tmp \
| while read missing
do
if grep "^$missing|" $tmp.list >$tmp.out
then
# the primary package is missing ... if any of the
# alternates are present (not missing) then we're OK
#
rm -f $tmp.ok
cut -d '|' -f 2- <$tmp.out \
| tr '|' '\012' \
| sed -e '/^$/d' \
| while read alt
do
if grep "^$alt$" $tmp.2 >/dev/null
then
$verbose && echo >&2 "Info: missing: $missing OK because alternate $alt installed"
touch $tmp.ok
break
fi
done
[ -f $tmp.ok ] || echo "$missing" >>$tmp.newlist
elif grep -E "\|$missing($|\|)" $tmp.list >$tmp.out
then
# this is an alternate ... only report the primary
# (first on line) package if it is also missing
#
:
else
echo "$missing" >>$tmp.newlist
fi
done
mv $tmp.newlist $tmp.list
fi
fi
# report manifest missing package name (?:<lineno>) on stderr
#
if grep '^?:[0-9][0-9]*$' $tmp.list >$tmp.tmp
then
( tr '\012' ' ' <$tmp.tmp ; echo ) >&2
grep -v '^?:[0-9][0-9]*$' $tmp.list >$tmp.tmp
mv $tmp.tmp $tmp.list
fi
# list missing packages (if any) on a single line on stdout
#
if [ -s $tmp.list ]
then
( tr '\012' ' ' <$tmp.list ; echo )
fi
status=0
|