From fcc12838b7989c2083a7573877aff5ef730715b1 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sat, 30 Jul 2022 14:11:43 +0200 Subject: [PATCH] Fix db_access.txt --- scripts/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index 29cfb9f..63edb65 100755 --- a/scripts/install +++ b/scripts/install @@ -152,10 +152,10 @@ chown $app:$app "$final_path/www/index.gmi" if [ $with_mysql -eq 1 ]; then # Store the database access echo -e "# MySQL Database -name: ${db_name}\nuser: ${db_name}\npass: ${db_pwd}" > ../sources/db_access.txt +name: ${db_name}\nuser: ${db_name}\npass: ${db_pwd}" > ../conf/db_access.txt # Copy files to the right place - cp -r "../sources/db_access.txt" "$final_path/db_access.txt" + cp -r "../conf/db_access.txt" "$final_path/db_access.txt" fi #=================================================