forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pin sources.list to a single debian archive server (elastic#3576)
We are getting back “403 Forbidden [IP: 193.62.202.28 80]” when building the docker images. The server at 130.89.148.13 seem to be responding normally for the moment.
- Loading branch information
1 parent
d0e20a9
commit 5a9bc20
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
deb http://archive.debian.org/debian/ squeeze main contrib | ||
deb http://archive.debian.org/debian/ squeeze-lts main | ||
deb http://130.89.148.13/debian/ squeeze main contrib | ||
deb http://130.89.148.13/debian/ squeeze-lts main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,9 @@ MAINTAINER Tudor Golubenco <[email protected]> | |
# Get libpcap binaries for linux | ||
RUN \ | ||
mkdir -p /libpcap && \ | ||
wget http://archive.debian.org/debian/pool/main/libp/libpcap/libpcap0.8-dev_1.1.1-2+squeeze1_i386.deb && \ | ||
wget http://130.89.148.13/debian/pool/main/libp/libpcap/libpcap0.8-dev_1.1.1-2+squeeze1_i386.deb && \ | ||
dpkg -x libpcap0.8-dev_*_i386.deb /libpcap/i386 && \ | ||
wget http://archive.debian.org/debian/pool/main/libp/libpcap/libpcap0.8-dev_1.1.1-2+squeeze1_amd64.deb && \ | ||
wget http://130.89.148.13/debian/pool/main/libp/libpcap/libpcap0.8-dev_1.1.1-2+squeeze1_amd64.deb && \ | ||
dpkg -x libpcap0.8-dev_*_amd64.deb /libpcap/amd64 && \ | ||
rm libpcap0.8-dev*.deb | ||
RUN \ | ||
|