apt-setup: test fix for non-applied file changes.

This commit is contained in:
Ark74 2025-08-25 14:49:48 -06:00
parent 677854292f
commit 1f503fb465
2 changed files with 8 additions and 2 deletions

View file

@ -113,9 +113,15 @@ Components: main
Signed-By: ${SIGNED_BY} Signed-By: ${SIGNED_BY}
EOF EOF
{
echo "deb ${uri} ${codename} main"
echo "deb ${uri} ${codename}-updates main"
echo "deb ${uri} ${codename}-security main"
} >> "$file"
# Keep the legacy file and the pipeline temp file as a single breadcrumb line # Keep the legacy file and the pipeline temp file as a single breadcrumb line
printf '%s\n' "$MSG" > "$LEGACY" printf '%s\n' "$MSG" > "$LEGACY"
printf '%s\n' "$MSG" > "$file" printf '%s\n' "$MSG" >> "$file"
exit 0 exit 0

View file

@ -18,7 +18,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# #
VERSION=4.3 VERSION=4.4
EXTERNAL='deb-src http://ftp.debian.org/debian trixie main' EXTERNAL='deb-src http://ftp.debian.org/debian trixie main'
REPOKEY=78DBA3BC47EF2265 REPOKEY=78DBA3BC47EF2265
NETINST=true NETINST=true