| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #!/bin/sh
- #
- # ensure we print warnings for unauthenticated repositories
- #
- set -e
- TESTDIR=$(readlink -f $(dirname $0))
- . $TESTDIR/framework
- setupenvironment
- configarchitecture "i386"
- # a "normal" package with source and binary
- buildsimplenativepackage 'foo' 'all' '2.0'
- setupaptarchive --no-update
- APTARCHIVE=$(readlink -f ./aptarchive)
- rm -f $APTARCHIVE/dists/unstable/*Release*
- # update without authenticated files leads to warning
- testequal "Ign file: unstable InRelease
- Ign file: unstable Release
- Reading package lists...
- W: The data from 'file: unstable Release' is not signed. Packages from that repository can not be authenticated.
- W: Use --allow-unauthenticated to force the update" aptget update
- # no package foo
- testequal "Listing..." apt list foo
- # allow override
- testequal "Ign file: unstable InRelease
- Ign file: unstable Release
- Reading package lists...
- W: The data from 'file: unstable Release' is not signed. Packages from that repository can not be authenticated." aptget update --allow-unauthenticated
- # ensure we can not install the package
- testequal "WARNING: The following packages cannot be authenticated!
- foo
- E: There are problems and -y was used without --force-yes" aptget install -qq -y foo
|