diff --git a/monitorall.yml b/monitorall.yml index af07826..4a72fb6 100644 --- a/monitorall.yml +++ b/monitorall.yml @@ -40,17 +40,10 @@ # - traceroute # - curl # - lynx - # - ruby - - name: Import the public key used by the package management system - apt_key: keyserver=hkp://keyserver.ubuntu.com:80 id=7F0CEB10 state=present - - name: Add MongoDB repository - become: true - apt_repository: repo='deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' state=present - - name: install mongodb - become: true - apt: pkg=mongodb-org state=latest update_cache=yes - notify: - - start mongodb - handlers: - - name: start mongodb - service: name=mongod state=started \ No newline at end of file + # - ruby + - name: Add Mongo packages repo + apt_key: id=2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5 keyserver=keyserver.ubuntu.com + - name: add repo itself + apt_repository: repo='deb http://repo.mongodb.org/apt/ubuntu {{ansible_distribution_release}}/mongodb-org/3.4 multiverse' state=present + - name: install packages + apt: pkg=mongodb-org state=present \ No newline at end of file