From: Julien Cristau Date: Sun, 19 Mar 2017 11:30:17 +0000 (+0100) Subject: Fix ensure value for postgres X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=773709eb577f5ebf4af3cd486652c516f59ba9d5;p=mirror%2Fdsa-puppet.git Fix ensure value for postgres --- diff --git a/modules/postgres/manifests/init.pp b/modules/postgres/manifests/init.pp index af2f206d5..534e21f9d 100644 --- a/modules/postgres/manifests/init.pp +++ b/modules/postgres/manifests/init.pp @@ -1,6 +1,6 @@ class postgres { $ensure = ($::postgres) ? { - true => 'ensure', + true => 'present', default => 'absent' }