summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-02-19 13:21:18 -0500
committerJesse Luehrs <doy@tozt.net>2021-02-19 13:21:18 -0500
commit6d79e47097b3e02372e667870a8b5ac8492e9d84 (patch)
treea1b78f0d927d9d6d16bb1293d4b39bf4bf519183 /modules
parent8269f182d94225742b9f0baf98d42e0c925e7290 (diff)
downloadpuppet-tozt-6d79e47097b3e02372e667870a8b5ac8492e9d84.tar.gz
puppet-tozt-6d79e47097b3e02372e667870a8b5ac8492e9d84.zip
more ttrss fixes
Diffstat (limited to 'modules')
-rw-r--r--modules/ttrss/manifests/init.pp8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/ttrss/manifests/init.pp b/modules/ttrss/manifests/init.pp
index 66432ce..fe78bd6 100644
--- a/modules/ttrss/manifests/init.pp
+++ b/modules/ttrss/manifests/init.pp
@@ -49,15 +49,15 @@ class ttrss {
exec { "fixup php.ini for pgsql":
provider => shell,
- command => "sed -i 's/^;\\(extension=.*pgsql\\)$/\\1/' /etc/php/php.ini",
- unless => "grep -q '^extension=pgsql$' /etc/php/php.ini && grep -q '^extension=pdo_pgsql$' /etc/php/php.ini",
+ command => "sed -i 's/^;\\(extension=.*pgsql\\)$/\\1/' /etc/php7/php.ini",
+ unless => "grep -q '^extension=pgsql$' /etc/php7/php.ini && grep -q '^extension=pdo_pgsql$' /etc/php7/php.ini",
require => Package["php7-pgsql"];
}
exec { "fixup php.ini for intl":
provider => shell,
- command => "sed -i 's/^;\\(extension=intl\\)$/\\1/' /etc/php/php.ini",
- unless => "grep -q '^extension=intl$' /etc/php/php.ini",
+ command => "sed -i 's/^;\\(extension=intl\\)$/\\1/' /etc/php7/php.ini",
+ unless => "grep -q '^extension=intl$' /etc/php7/php.ini",
require => Package["tt-rss"];
}