Puppet: Don't fail on createlang for PostgreSQL databases

refs #9453
This commit is contained in:
Eric Lippmann 2015-07-20 16:48:02 +02:00
parent af4dbadd36
commit a9bb42029c
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ define pgsql::database::create ($username, $password) {
unless => "psql -tAc \"SELECT 1 FROM pg_roles WHERE rolname='${username}'\" | grep -q 1",
command => "psql -c \"CREATE ROLE ${username} WITH LOGIN PASSWORD '${password}';\" && \
createdb -O ${username} -E UTF8 -T template0 ${name} && \
createlang plpgsql ${name}",
(createlang plpgsql ${name} || true)",
user => 'postgres',
require => Class['pgsql']
}