From b8f8bef0f8d92f59a1f4ab1c78554b925ba9e5da Mon Sep 17 00:00:00 2001 From: Alexander Shorin Date: Tue, 29 Jul 2014 18:16:43 +0400 Subject: [PATCH] Fix service name According installation guides and reality it's `mongod`, not `mongodb`. --- tasks/mongodb.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/mongodb.yml b/tasks/mongodb.yml index 5d704d8..a6bc996 100644 --- a/tasks/mongodb.yml +++ b/tasks/mongodb.yml @@ -4,6 +4,6 @@ when: ansible_os_family == 'Debian' - name: Ensure mongodb is started - service: name=mongodb state=started + service: name=mongod state=started - include: configure.yml