From fce3e9d93b55dfc59059fa46f038473bcf0a46fa Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Wed, 20 Jan 2016 17:15:50 -0500 Subject: [PATCH] Pin pip to less than version 8 in install_puppet.sh When we create a new server and install puppet, we also install pip. That's awesome, except when pip >=8 breaks us. For now, pin it. Change-Id: Id12f866f577c3ca2405a6049084c3cb0af82fde5 --- install_puppet.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_puppet.sh b/install_puppet.sh index 8972fbcef0..4510cfa048 100755 --- a/install_puppet.sh +++ b/install_puppet.sh @@ -214,7 +214,7 @@ function setup_pip { zypper --non-interactive in --force-resolution python python-xml fi - python get-pip.py + python get-pip.py -c <(echo 'pip<8') rm get-pip.py pip install -U setuptools }