From 91f8a70e6a6ab486e9a3b2eb7d0cf18ed639a55f Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Thu, 4 May 2017 19:34:46 +0200 Subject: [PATCH] [pip] Install django-x509 dev version as last Otherwise it will revert to the stable version because openwisp-controller will reset it --- tasks/pip.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tasks/pip.yml b/tasks/pip.yml index b7f359ce..56fa011b 100644 --- a/tasks/pip.yml +++ b/tasks/pip.yml @@ -51,20 +51,20 @@ virtualenv_site_packages: yes notify: reload supervisor -- name: Install development version of django-x509 - when: openwisp2_django_x509_dev +- name: Install development version of netjsonconfig + when: openwisp2_netjsonconfig_dev pip: - name: https://github.com/openwisp/django-x509/tarball/master + name: https://github.com/openwisp/netjsonconfig/tarball/master state: latest virtualenv: "{{ virtualenv_path }}" virtualenv_python: "{{ openwisp2_python }}" virtualenv_site_packages: yes notify: reload supervisor -- name: Install development version of netjsonconfig - when: openwisp2_netjsonconfig_dev +- name: Install development version of django-x509 + when: openwisp2_django_x509_dev pip: - name: https://github.com/openwisp/netjsonconfig/tarball/master + name: https://github.com/openwisp/django-x509/tarball/master state: latest virtualenv: "{{ virtualenv_path }}" virtualenv_python: "{{ openwisp2_python }}"