From 1ce6b3c3b475f743915c2f667812b1a627617741 Mon Sep 17 00:00:00 2001 From: David Sterry Date: Tue, 7 Dec 2021 18:08:31 -0800 Subject: [PATCH] add tmp/pids dir during installation (#23) --- scripts/install | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install b/scripts/install index 1fb44ce..d98facc 100644 --- a/scripts/install +++ b/scripts/install @@ -160,6 +160,7 @@ ynh_setup_source --dest_dir="$final_path" # files in some cases. # But FOR THE LOVE OF GOD, do not allow r/x for "others" on the entire folder - # this will be treated as a security issue. +mkdir -p "$final_path/tmp/pids" chmod 750 "$final_path" chmod -R o-rwx "$final_path" chown -R $app:www-data "$final_path"