PHP Classes

File: ansible/roles/mongodb/tasks/main.yml

Recommend this page to a friend!
  Classes of Omar Shaban   PHP Game of Three   ansible/roles/mongodb/tasks/main.yml   Download  
File: ansible/roles/mongodb/tasks/main.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Game of Three
Game of Three implementation using Websockets
Author: By
Last change:
Date: 2 years ago
Size: 729 bytes
 

Contents

Class file image Download
--- - name: MongoDB | Fetch 10Gen signing key command: apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10 - name: MongoDB | Add 10Gen repository shell: echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/10gen.list creates=/etc/apt/sources.list.d/10gen.list - name: MongoDB | Install latest MongoDB release apt: pkg=mongodb-10gen state=present update_cache=yes - name: MongoDB | Create default configuration template template: src=mongodb.conf.tpl dest=/etc/mongodb.conf owner=root group=root mode=0644 notify: - mongodb-restart - name: MongoDB | Insure deamon is running correctly service: name=mongodb state=started