From b84beadc9474cca1357fd80d9492700a6fd70c12 Mon Sep 17 00:00:00 2001 From: Sebastian Gumprich Date: Mon, 14 Oct 2024 14:43:18 +0200 Subject: [PATCH] fix(install): re-add chmod and chown tasks --- scripts/install | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install b/scripts/install index 9b5e4e6..9d12244 100755 --- a/scripts/install +++ b/scripts/install @@ -60,6 +60,11 @@ pushd "$install_dir" php$php_version artisan cache:clear popd +# invoiceninja creates some directories that need to be chmod'ed +chmod 750 "$install_dir" +chmod -R o-rwx "$install_dir" +chown -R $app:www-data "$install_dir" + #================================================= # ADD A CRON JOB #=================================================