mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2025-02-20 18:03:01 +01:00
11 lines
298 B
Bash
11 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
|