Commit 2c66ff95 by Fred Smith

Merge pull request #1797 from edx/derf/specify_a_boto_version_for_supervisor

boto needs to be at least this version to be able to tag volumes
parents a026fd3b acbbb036
...@@ -62,7 +62,7 @@ aws_debian_pkgs: ...@@ -62,7 +62,7 @@ aws_debian_pkgs:
aws_pip_pkgs: aws_pip_pkgs:
- https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-latest.tar.gz - https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-latest.tar.gz
- awscli==1.4.2 - awscli==1.4.2
- boto==2.32.1 - boto=="{{ common_boto_version }}"
aws_redhat_pkgs: [] aws_redhat_pkgs: []
aws_s3cmd_version: s3cmd-1.5.0-beta1 aws_s3cmd_version: s3cmd-1.5.0-beta1
......
...@@ -68,6 +68,7 @@ COMMON_ENABLE_NEWRELIC: False ...@@ -68,6 +68,7 @@ COMMON_ENABLE_NEWRELIC: False
COMMON_ENABLE_NEWRELIC_APP: False COMMON_ENABLE_NEWRELIC_APP: False
COMMON_ENABLE_MINOS: False COMMON_ENABLE_MINOS: False
COMMON_TAG_EC2_INSTANCE: False COMMON_TAG_EC2_INSTANCE: False
common_boto_version: '2.34.0'
common_debian_pkgs: common_debian_pkgs:
- ntp - ntp
- ack-grep - ack-grep
......
...@@ -38,4 +38,4 @@ pip_accel_reqs: ...@@ -38,4 +38,4 @@ pip_accel_reqs:
# Install pip-accel itself (using pip) # Install pip-accel itself (using pip)
- "pip-accel==0.21.1" - "pip-accel==0.21.1"
# pip-accel only makes the s3 functionality available if boto is installed # pip-accel only makes the s3 functionality available if boto is installed
- "boto==2.34.0" - "boto=={{ common_boto_version }}"
...@@ -42,5 +42,5 @@ supervisor_service: supervisor ...@@ -42,5 +42,5 @@ supervisor_service: supervisor
supervisor_service_user: "{{ common_web_user }}" supervisor_service_user: "{{ common_web_user }}"
supervisor_pip_pkgs: supervisor_pip_pkgs:
- boto - boto=="{{ common_boto_version }}"
- python-simple-hipchat - python-simple-hipchat
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment