forked from portertech/puppet-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
33 lines (27 loc) · 955 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# MongoDB Module #
Author : Sean Porter <[email protected]>
Version : 0.0.6
Licence : Apache
Module for creating a MongoDB server.
Use a Ubuntu AMI provided by: http://alestic.com/
Use Git.
Add it:
git submodule add git://github.com/portertech/puppet-mongodb.git modules/mongodb
git submodule init
git submodule update
Update it:
git pull modules/mongodb
Sample Usage :
node 'mongodb-1.domain.com', 'mongodb-2.domain.com', 'mongodb-3.domain.com' {
# Install MongoDB
include mongodb
# Nodes are in a replica set
mongodb::replica_set { "example_set_name": }
}
## CHANGELOG ##
- v0.0.1 : Hello World.
- v0.0.2 : Require apt to update.
- v0.0.3 : Fixed the apt update. Puppet couldn’t determine the apt update resource state.
- v0.0.4 : Begin support for multiple Ubuntu releases. Added replica set support and README.
- v0.0.5 : Support for Ubuntu Maverick (10.10).
- v0.0.6 : Added "python-software-properties" for apt abstraction.