Commit 12d5e60b by Max Rothman

Fix stupid bug on master from 6fc28e55

parent 6fc28e55
......@@ -121,7 +121,7 @@
dest: "/etc/init/{{ supervisor_service }}.conf"
owner: root
group: root
when: ansible_distribution == 'Ubuntu' and ansible_distribution_major_version < 16
when: ansible_distribution == 'Ubuntu' and ansible_distribution_major_version|int < 16
tags:
- install
- install:base
......@@ -137,7 +137,7 @@
group: root
when: >
supervisor_service == "supervisor" and disable_edx_services and not devstack
and ansible_distribution == 'Ubuntu' and ansible_distribution_major_version < 16
and ansible_distribution == 'Ubuntu' and ansible_distribution_major_version|int < 16
tags:
- to-remove
- aws-specfic
......@@ -149,7 +149,7 @@
dest: "/etc/systemd/system/{{ supervisor_service }}.service"
owner: root
group: root
when: not (ansible_distribution == 'Ubuntu' and ansible_distribution_major_version < 16)
when: not (ansible_distribution == 'Ubuntu' and ansible_distribution_major_version|int < 16)
tags:
- install
- install:base
......@@ -217,7 +217,7 @@
service:
name: "{{ supervisor_service }}.service"
enabled: yes
when: not (ansible_distribution == 'Ubuntu' and ansible_distribution_major_version < 16)
when: not (ansible_distribution == 'Ubuntu' and ansible_distribution_major_version|int < 16)
tags:
- install
- install:base
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment