Skip to content

Commit 618fb1d

Browse files
committed
Fix Graphite installation directory creation
There is a bug with pip and the way the Graphite package is setup that causes webapp directory not to be created. graphite-project/graphite-web#1508
1 parent 029e178 commit 618fb1d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

roles/graphite/tasks/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@
2121

2222

2323
- name: Install Graphite from PIP
24-
pip: requirements=/tmp/requirements.txt
24+
pip:
25+
requirements: /tmp/requirements.txt
26+
extra_args: "--no-binary=:all:"
2527
environment:
2628
PYTHONPATH: "/opt/graphite/lib:/opt/graphite/webapp"
2729

0 commit comments

Comments
 (0)