Skip to content
This repository has been archived by the owner on Oct 1, 2020. It is now read-only.

Commit

Permalink
pin ansible version
Browse files Browse the repository at this point in the history
  • Loading branch information
monty5811 committed Oct 25, 2016
1 parent 4215abc commit ad830ea
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.

## [Unreleased]
### Fixed
- Better handle messages beginning with `name`
- Pin ansible version so install does not fail

## [v1.13.0]
### Added
Expand Down
2 changes: 1 addition & 1 deletion ansible/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN pip install \
Jinja2 \
httplib2 \
six
RUN pip install ansible
RUN pip install ansible==2.1.1.0
RUN apt-get update && apt-get install -y locales && rm -rf /var/lib/apt/lists/* \
&& localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
ENV LANG en_US.utf8
Expand Down
2 changes: 1 addition & 1 deletion ansible/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
test:
build: .
command: bash docker_test_cmd.sh
command: bash docker_test_cmd.sh
2 changes: 1 addition & 1 deletion ansible/roles/web/tasks/setup_django_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@

- name: Setup clearsessions cron job
cron: name="django {{application_name}} clearsessions"
weekday="0"
weekday="0"
user="root"
job="{{virtualenv_path}}/bin/python {{ application_path}}/manage.py clearsessions --settings={{ django_settings_file }}"
2 changes: 1 addition & 1 deletion scripts/ansible_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if [ ! -d 'apostello-install' ]; then
virtualenv venv --no-site-packages
./venv/bin/pip install -U pip
./venv/bin/pip install -U setuptools
./venv/bin/pip install ansible
./venv/bin/pip install ansible==2.1.1.0
else
cd apostello-install
echo "Updating apostello..."
Expand Down

0 comments on commit ad830ea

Please sign in to comment.