From 61f077bb2098f3aa7553a808bdc6128dd6b37489 Mon Sep 17 00:00:00 2001 From: Matthaus Litteken Date: Wed, 12 Sep 2012 22:11:10 -0700 Subject: [PATCH] Remove $service_provider setting for ubuntu Ubuntu's precise ships with init scripts, not with upstart service definitions. Declaring the provider to be upstart will cause service management on postgres to fail. Leaving it undefined will allow puppet to select the correct (init) provider. --- manifests/params.pp | 3 --- 1 file changed, 3 deletions(-) diff --git a/manifests/params.pp b/manifests/params.pp index a7d5e83..2f36e15 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -20,9 +20,6 @@ class postgresql::params { $manage_redhat_firewall = false case $::operatingsystem { - "Ubuntu": { - $service_provider = upstart - } default: { $service_provider = undef }