This file contains hidden or 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
DROP="`wget -qO- http://www.spamhaus.org/drop/drop.txt`";for i in `echo $DROP|egrep -o "[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/[0-9]{1,3}"|sort -n`; do route add -net $i reject; done;EDROP="`wget -qO- http://www.spamhaus.org/drop/edrop.txt`";for i in `echo $EDROP|egrep -o "[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/[0-9]{1,3}"|sort -n`; do route add -net $i reject; done |
This file contains hidden or 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
diff --git a/etc/mock/site-defaults.cfg b/etc/mock/site-defaults.cfg | |
index 32472e4..c5ecfd3 100644 | |
--- a/etc/mock/site-defaults.cfg | |
+++ b/etc/mock/site-defaults.cfg | |
@@ -118,6 +118,7 @@ |
This file contains hidden or 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
FROM ubuntu:15.10 | |
RUN apt-get clean && \ | |
apt-get update && \ | |
apt-get -y install \ | |
libsoup2.4-dev \ | |
libgtk-3-dev \ | |
libjson-glib-dev \ | |
valac \ | |
make \ |