From 8974c2cbc7bc804d83af0638467f5d6c831e097c Mon Sep 17 00:00:00 2001 From: jgen Date: Mon, 17 Feb 2014 17:12:01 -0500 Subject: [PATCH] Change the apt-get commands. --- .travis.yml | 6 ++++-- tests/{.travis_nginx.conf => travis_nginx.conf} | 0 2 files changed, 4 insertions(+), 2 deletions(-) rename tests/{.travis_nginx.conf => travis_nginx.conf} (100%) diff --git a/.travis.yml b/.travis.yml index 72814563..f2824b73 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,9 +13,11 @@ before_install: - sudo apt-get update > /dev/null install: - - sudo apt-get install -y --force-yes nginx php-fpm php5-mysql - - cp .travis_nginx.conf /etc/nginx/nginx.conf + - sudo apt-get install -y nginx --fix-missing + - sudo apt-get install -y php5-fpm php5-mysql --fix-missing + - cp travis_nginx.conf /etc/nginx/nginx.conf - /etc/init.d/nginx restart + - /etc/init.d/php5-fpm restart # execute any number of scripts before the test run, custom env's are available as variables before_script: diff --git a/tests/.travis_nginx.conf b/tests/travis_nginx.conf similarity index 100% rename from tests/.travis_nginx.conf rename to tests/travis_nginx.conf