From a087bc8c00d1b5203f0d6b691e1355c3a4bb597b Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 10 Dec 2014 15:20:45 +0100 Subject: [PATCH] puppet: Add note to php-timezone that it's always executed and that it should be a resource --- .vagrant-puppet/modules/php/manifests/init.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/.vagrant-puppet/modules/php/manifests/init.pp b/.vagrant-puppet/modules/php/manifests/init.pp index 2c9c33619..dd6df83b3 100644 --- a/.vagrant-puppet/modules/php/manifests/init.pp +++ b/.vagrant-puppet/modules/php/manifests/init.pp @@ -23,6 +23,7 @@ class php { require => Package['apache'], notify => Service['apache'] } + # TODO(el): Always executed. Should be a resource -> exec { 'php-timezone': command => 'sed -re $\'s#^;?(date\\.timezone =).*$#\\1 "UTC"#\' -i /etc/php.ini', notify => Service['apache'],