From 931fabc9fb81015c0200b89ea4e43134dc151e20 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Fri, 22 Dec 2017 13:29:19 +0100 Subject: [PATCH] fix typo --- tasks/install.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/install.yml b/tasks/install.yml index 3ba2ab2..87e68f9 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -1,8 +1,8 @@ --- - block: - name: Add mongodb repo - yum-repository: - name: "mongodb-org-3.4" + yum_repository: + name: mongodb-org-3.4 description: MongoDB Repository baseurl: https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.4/x86_64/ gpgcheck: yes @@ -13,7 +13,7 @@ - name: Install mongodb package package: - name: "mongodb-org" + name: mongodb-org state: latest notify: - mongod_restart