mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
12 lines
298 B
Bash
12 lines
298 B
Bash
#!/bin/bash
|
|
|
|
echo $0
|
|
set -e
|
|
|
|
rm -f /etc/apt/apt.conf.d/02proxy
|
|
echo "Acquire::ftp::Proxy \"$1\";" >> /etc/apt/apt.conf.d/02proxy
|
|
echo "Acquire::http::Proxy \"$1\";" >> /etc/apt/apt.conf.d/02proxy
|
|
echo "Acquire::https::Proxy \"$1\";" >> /etc/apt/apt.conf.d/02proxy
|
|
|
|
apt-get update || apt-get update
|