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

Commit

Permalink
Remove all virtualenv references
Browse files Browse the repository at this point in the history
As stated in Issue #3, I am removing any attempted support for virtual
environments from this role. Upstream don't support it and its so badly broken
it isn't worth pretending it works.
  • Loading branch information
goetzk committed Apr 16, 2017
1 parent 5c8260f commit cd7456e
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 14 deletions.
3 changes: 0 additions & 3 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
# How should things be installed, 'packages' or 'pip'
shinken_install_from: 'pip'

# Where pip will install packages
shinken_virtualenv: /srv/shinken/environment

# Path of broker configuration
shinken_config_broker: /etc/shinken/brokers/

Expand Down
1 change: 0 additions & 1 deletion tasks/configure-shinken-webui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
pip:
state: present
name: "pymongo>=3.0.3 passlib requests arrow bottle==0.12.8"
# virtualenv: {{ shinken_virtualenv }}

- name: Install mongodb for storing WebUI user preferences
package:
Expand Down
4 changes: 0 additions & 4 deletions tasks/install-shinken-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,10 @@
name: pycurl
version: 7.43.0
state: present
# virtualenv: "{{ shinken_virtualenv }}"
# virtualenv_site_packages: yes

- name: Install Shinken using pip
when: shinken_install_from == "pip"
pip:
name: Shinken
state: present
# virtualenv: "{{ shinken_virtualenv }}"
# virtualenv_site_packages: yes

6 changes: 0 additions & 6 deletions tasks/prepare-for-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@
group: shinken
system: yes

# - name: Create directory for shinken to be installed to
# when: shinken_install_from == "pip"
# file:
# path: "{{ shinken_virtualenv }}"
# state: directory

# needed to install shinken and its web ui
- name: Install python-pip
package:
Expand Down

0 comments on commit cd7456e

Please sign in to comment.