summaryrefslogtreecommitdiff
path: root/manifests/query/setup.pp
blob: a5d1657e0171e0c8cb49ac6e1b507eb3aa2b95c8 (plain)
1
2
3
4
5
6
7
8
define couchdb::query::setup ($host='127.0.0.1', $user, $pw) {
  file { '/etc/couchdb/couchdb.netrc':
    content => "machine $host login $user password $pw",
    mode    => '0600',
    owner   => 'couchdb',
    group   => 'couchdb',
  }
}