From 03bdc7de2d4b3f9e18b27714e78d4f3619b58bb8 Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Tue, 28 Nov 2023 18:49:49 +0200 Subject: [PATCH] fix cwd --- manifests/init.pp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index cabca92..bf38161 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -269,10 +269,11 @@ class mastodon ( ], user => $mastodon_user, group => $mastodon_group, - pwd => "${mastodon_home}/live", + cwd => "${mastodon_home}/live", timeout => 0, require => File["${mastodon_home}/live/.env.production"], } # db:create # RAILS_ENV=production rails assets:precompile + # Apache::vhost }