File: test-version-apt.sh

package info (click to toggle)
apt-venv 1.0.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 260 kB
  • sloc: python: 232; sh: 52; makefile: 2
file content (14 lines) | stat: -rwxr-xr-x 319 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

releases="oldstable stable testing unstable experimental xenial bionic focal jammy"

main(){
echo '
--------------------------------------------------------------------------
'
    for release in $releases; do
	apt-venv $release -c "apt-cache madison apt | grep Source | tail -1"
    done
}

main || exit 77