Skip to content

Commit 4874c05

Browse files
committed
fix(state): fix int comparison
1 parent 3af72f6 commit 4874c05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

influxdb/init.sls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
{% elif grains['os_family'] == 'RedHat' %}
1212
{% set filename = "influxdb-" + influxdb_settings['version'] + "-1." + grains['osarch'] + ".rpm" %}
1313
{% endif %}
14-
{% elif major == '0' and minor >= 10 and minor|int < 13 %}
14+
{% elif major == '0' and minor|int >= 10 and minor|int < 13 %}
1515
{% set base_url = 'http://s3.amazonaws.com/influxdb' %}
1616
{% if grains['os_family'] == 'Debian' %}
1717
{% set filename = "influxdb_" + influxdb_settings['version'] + "-1_" + grains['osarch'] + ".deb" %}

0 commit comments

Comments
 (0)