Skip to content
This repository was archived by the owner on Dec 28, 2021. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions tasks/install-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@
system=yes
state=present

- name: Ensure python-setuptools present to use easy_install
package:
name: "{{ item }}"
state: present
with_items:
- python-setuptools

- name: install required python modules to allow to download release
easy_install:
name={{ item }}
Expand All @@ -22,6 +29,7 @@
- pyopenssl
- ndg-httpsclient
- pyasn1
become: yes

- name: check if mattermost has already been installed
stat: path={{ mattermost_install_dir }}/README.md
Expand Down