Skip to content

Commit

Permalink
Create the databases for user vagrant so that ident authentification …
Browse files Browse the repository at this point in the history
…works.
  • Loading branch information
Marvin Gülker committed Feb 14, 2013
1 parent 9502adf commit bc19c87
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions manifests/tomcat-server.pp
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@
}

postgresql::db { "production":
user => "rails",
password => "rails",
user => "vagrant",
password => "vagrant",
}

postgresql::db { "development":
user => "rails",
password => "rails"
user => "vagrant",
password => "vagrant"
}

postgresql::db { "test":
user => "rails",
password => "rails"
user => "vagrant",
password => "vagrant"
}
}

Expand Down

0 comments on commit bc19c87

Please sign in to comment.