We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6745bcc commit e292e44Copy full SHA for e292e44
tasks/install.debian.yml
@@ -50,10 +50,11 @@
50
when: mongodb_package == 'mongodb-org'
51
52
- name: Install MongoDB package
53
- apt: name={{item}} state=present
54
- with_items:
55
- - "{{mongodb_package}}"
56
- - numactl
+ apt:
+ name:
+ - "{{mongodb_package}}"
+ - numactl
57
+ state: present
58
59
- name: Add systemd configuration if present
60
copy: src=mongodb.service dest=/lib/systemd/system/mongodb.service owner=root group=root mode=0640
@@ -76,10 +77,10 @@
76
77
when: not mongodb_pymongo_from_pip
78
79
- name: Install PIP
- apt: pkg={{ item }}
80
81
- - python-dev
82
- - python-pip
+ pkg:
+ - python-dev
83
+ - python-pip
84
when: mongodb_pymongo_from_pip
85
86
- name: Install PyMongo from PIP
0 commit comments