From ffdab037f985fad6062d87afd3c733b46c698ff2 Mon Sep 17 00:00:00 2001 From: denis Date: Fri, 15 Nov 2024 12:04:44 -0500 Subject: [PATCH] Update scripts/install --- scripts/install | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/install b/scripts/install index 97fd051..5d4e339 100755 --- a/scripts/install +++ b/scripts/install @@ -69,14 +69,14 @@ ynh_script_progression "Adding $app's configuration files..." ### ### Check the documentation of `ynh_config_add` for more info. -ynh_config_add --template="run.sh" --destination="$install_dir/run.sh" +#ynh_config_add --template="run.sh" --destination="$install_dir/run.sh" # FIXME: this should be handled by the core in the future ### You may need to use chmod 600 instead of 400, ### for example if the app is expected to be able to modify its own config -chmod +x "$install_dir/run.sh" -chmod 400 "$install_dir/run.sh" -chown "$app:$app" "$install_dir/run.sh" +#chmod +x "$install_dir/run.sh" +#chmod 400 "$install_dir/run.sh" +#chown "$app:$app" "$install_dir/run.sh" ### For more complex cases where you want to replace stuff using regexes, ### you shoud rely on ynh_replace (which is basically a wrapper for sed)