From 0bf517abf6be4c376c38791f665f6607301f0bb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Sun, 28 Jan 2024 17:45:35 +0100 Subject: [PATCH] debug --- scripts/install | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 45f15f9..ed51c82 100755 --- a/scripts/install +++ b/scripts/install @@ -32,10 +32,15 @@ ynh_add_config --template="../conf/install-conf.yml" --destination="$install_dir ynh_delete_file_checksum --file="$install_dir/install-conf.yml" pushd "$install_dir" - ynh_exec_as "$app" ./cells configure --cli --yaml "./install-conf.yml" + ynh_exec_warn ynh_exec_as "$app" ./cells configure --cli --yaml "./install-conf.yml" popd ynh_secure_remove --file="$install_dir/install-conf.yml" +ynh_exec_warn echo "###### LISTING $install_dir" +ynh_exec_warn find "$install_dir" +ynh_exec_warn echo "###### LISTING $data_dir" +ynh_exec_warn find "$data_dir" + #================================================= # SYSTEM CONFIGURATION #================================================= @@ -56,6 +61,12 @@ ynh_script_progression --message="Starting a systemd service..." --weight=1 # Start a systemd service ynh_systemd_action --service_name="$app" --action="start" --log_path="systemd" --line_match="Restart done" +ynh_exec_warn echo "###### LISTING $install_dir" +ynh_exec_warn find "$install_dir" +ynh_exec_warn echo "###### LISTING $data_dir" +ynh_exec_warn find "$data_dir" + + #================================================= # END OF SCRIPT #=================================================