Fold apt-cache into new structure
Some checks are pending
continuous-integration/laminar-eldarion Build failed with exit code 128 after 1 second

This commit is contained in:
Starbeamrainbowlabs 2021-11-25 23:44:56 +00:00
parent 8f06292c41
commit a7483500ff
Signed by: sbrl
GPG key ID: 1BE5172E637709C2
3 changed files with 9 additions and 8 deletions

View file

@ -1,8 +0,0 @@
#!/usr/bin/env bash
RUN "echo 'Acquire::http { Proxy \"http://172.16.230.100:3142\"; }' | sudo tee /etc/apt/apt.conf.d/proxy"
# Use http instead of https to allow caching
RUN "echo 'deb http://archive.raspberrypi.org/debian/ buster main ui' | sudo tee /etc/apt/sources.list.d/raspi.list";
RUN_ONCE "sudo rm /etc/apt/sources.list.d/raspi";

0
src/apt-packages.txt Normal file
View file

View file

@ -0,0 +1,9 @@
#!/usr/bin/env bash
echo 'Acquire::http { Proxy \"http://172.16.230.100:3142\"; }' | tee /etc/apt/apt.conf.d/proxy
echo 'deb http://archive.raspberrypi.org/debian/ buster main ui' | tee /etc/apt/sources.list.d/raspi.list
rm /etc/apt/sources.list.d/raspi;