mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
63 lines
1.5 KiB
YAML
63 lines
1.5 KiB
YAML
- name: Install MongoDB required packages
|
|
package:
|
|
name: "{{ item }}"
|
|
state: present
|
|
with_items:
|
|
- mongodb-server
|
|
- mongodb
|
|
when: internet_available
|
|
tags:
|
|
- download
|
|
|
|
- name: Create the data directory for MongoDB
|
|
file:
|
|
state: directory
|
|
path: "{{ item.path }}"
|
|
owner: mongodb
|
|
with_items:
|
|
- { path: '/var/run/mongodb' }
|
|
- { path: "{{ mongodb_db_path }}" }
|
|
- { path: '/var/log/mongodb' }
|
|
|
|
- name: Position /etc/mongod.conf and mongodb.service
|
|
template:
|
|
src: "{{ item.src }}"
|
|
dest: "{{ item.dest }}"
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
with_items:
|
|
- { src: 'mongodb.service' , dest: '/etc/systemd/system/' }
|
|
- { src: 'mongod.conf' , dest: '/etc/mongod.conf'}
|
|
|
|
- name: Restart service if enabled
|
|
service:
|
|
name: "{{ item.name }}"
|
|
enabled: yes
|
|
state: restarted
|
|
with_items:
|
|
- { name: mongodb }
|
|
when: mongodb_enabled
|
|
|
|
- name: Stop service if not enabled
|
|
service:
|
|
name: "{{ item.name }}"
|
|
enabled: no
|
|
state: stopped
|
|
with_items:
|
|
- { name: mongodb }
|
|
when: not mongodb_enabled
|
|
|
|
- name: Add 'mongodb' to list of services at /etc/iiab/iiab.ini
|
|
ini_file:
|
|
dest: "{{ service_filelist }}"
|
|
section: mongodb
|
|
option: "{{ item.option }}"
|
|
value: "{{ item.value }}"
|
|
with_items:
|
|
- option: name
|
|
value: MongoDB
|
|
- option: description
|
|
value: '"MongoDB is an open-source document database that provides high performance, high availability, and automatic scaling."'
|
|
- option: enabled
|
|
value: "{{ mongodb_enabled }}"
|