diff options
author | Jan Wagner <waja@cyconet.org> | 2015-10-20 16:44:13 (GMT) |
---|---|---|
committer | Jan Wagner <waja@cyconet.org> | 2015-10-20 16:44:13 (GMT) |
commit | 20d8799fb0415a720f5ffe50d647b3ba0bcc503f (patch) | |
tree | b7c9f735fe2197f2cc1c2c249d492ac10292e723 | |
parent | 079ab8a658d89a4632f3fb1745c5aaffaad81afb (diff) | |
download | monitoring-plugins-20d8799fb0415a720f5ffe50d647b3ba0bcc503f.tar.gz |
travis-ci: Work around broken /etc/hosts on trusty env
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index b4aab01..96ba2c0 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -3,7 +3,11 @@ dist: trusty | |||
3 | language: c | 3 | language: c |
4 | 4 | ||
5 | before_install: | 5 | before_install: |
6 | # Trusty related fixed | ||
7 | # multiverse is no on trusty activated (https://github.com/travis-ci/travis-ci/issues/4979) | ||
6 | - sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ trusty multiverse" && sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ trusty-updates multiverse" | 8 | - sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ trusty multiverse" && sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ trusty-updates multiverse" |
9 | # /etc/hosts has IPv6 hosts (https://github.com/travis-ci/travis-ci/issues/4978) | ||
10 | - sudo [ $(ip addr show | grep "inet6 ::1" | wc -l) -lt "1" ] && sudo sed -i '/^::1/d' /etc/hosts | ||
7 | - sudo apt-get update -qq | 11 | - sudo apt-get update -qq |
8 | - sudo apt-get purge -qq gawk | 12 | - sudo apt-get purge -qq gawk |
9 | # http://docs.travis-ci.com/user/trusty-ci-environment/ indicates, no MySQL on Trusty (yet) | 13 | # http://docs.travis-ci.com/user/trusty-ci-environment/ indicates, no MySQL on Trusty (yet) |