5 lines
243 B
Bash
Executable file
5 lines
243 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
echo "Disabling Contents downloads in chroot stage..."
|
|
echo "Acquire::IndexTargets::deb::Contents-deb::DefaultEnabled \"false\";" > /etc/apt/apt.conf.d/99-disable-contents
|
|
echo "Contents downloads disabled in chroot stage."
|