From e1c1f532c3ff0638bf92dc4e66af54a39626d72f Mon Sep 17 00:00:00 2001 From: Jerry Vonau Date: Tue, 25 Aug 2020 21:55:42 -0500 Subject: [PATCH] final touchups --- roles/mongodb/tasks/install.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/roles/mongodb/tasks/install.yml b/roles/mongodb/tasks/install.yml index 05d05c8a6..ccf5af68e 100644 --- a/roles/mongodb/tasks/install.yml +++ b/roles/mongodb/tasks/install.yml @@ -102,7 +102,8 @@ - block: - name: Add mongodb.org signing key shell: wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | apt-key add - - warn: false + args: + warn: false - name: Add mongodb repo for Debian 10 amd64 apt_repository: @@ -135,7 +136,7 @@ - name: Change the mongodb port to 27018 lineinfile: path: /etc/mongod.conf - regexp: '^port:$' + regexp: 'port: 27017' backrefs: yes line: ' port: 27018'