Skip to content

Commit 05c5400

Browse files
authored
Merge pull request UnderGreen#253 from psabhay/type-fix
mongodb_major_version needs to be a string
2 parents 7814b89 + e900160 commit 05c5400

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tasks/install.amazon.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
- name: Establish some role-related facts
33
set_fact:
4-
mongodb_major_version: "{{ mongodb_version[0:3] }}"
4+
mongodb_major_version: "{{ mongodb_version[0:3] | string }}"
55

66
- name: Add YUM repository
77
template:

tasks/install.debian.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
- name: Establish some role-related facts
33
set_fact:
4-
mongodb_major_version: "{{ mongodb_version[0:3] }}"
4+
mongodb_major_version: "{{ mongodb_version[0:3] | string }}"
55

66
- name: Disable transparent huge pages on systemd systems
77
include_tasks: disable_transparent_hugepages.yml

tasks/install.redhat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- name: Establish some role-related facts
44
set_fact:
5-
mongodb_major_version: "{{ mongodb_version[0:3] }}"
5+
mongodb_major_version: "{{ mongodb_version[0:3] | string }}"
66

77
- name: Install EPEL release repository
88
package:

0 commit comments

Comments
 (0)