mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
Fix
This commit is contained in:
parent
9aef5bd2aa
commit
588beeff70
2 changed files with 5 additions and 5 deletions
|
@ -12,13 +12,13 @@ define ("noalyss_psql_host","localhost");
|
||||||
|
|
||||||
// If you change the NOALYSS_ADMINISTRATOR , you will need to rerun http://..../noalyss/html/install.php
|
// If you change the NOALYSS_ADMINISTRATOR , you will need to rerun http://..../noalyss/html/install.php
|
||||||
// But it doesn't change the password
|
// But it doesn't change the password
|
||||||
define ("NOALYSS_ADMINISTRATOR","__ADMIN__");
|
define ("NOALYSS_ADMINISTRATOR","admin");
|
||||||
// used only for install
|
// used only for install
|
||||||
define ("NOALYSS_ADMIN_PASSWORD","");
|
define ("NOALYSS_ADMIN_PASSWORD","");
|
||||||
define ("LOCALE",1);
|
define ("LOCALE",1);
|
||||||
define ("domaine","__DOMAIN__");
|
define ("domaine","");
|
||||||
define ("MULTI",1);
|
define ("MULTI",1);
|
||||||
define ("dbname","__DB_NAME__");
|
define ("dbname","");
|
||||||
// Uncomment to DEBUG
|
// Uncomment to DEBUG
|
||||||
// define ("DEBUG",TRUE);
|
// define ("DEBUG",TRUE);
|
||||||
// Uncomment to log your input
|
// Uncomment to log your input
|
||||||
|
|
|
@ -144,8 +144,8 @@ cp ../conf/noalyss.conf $final_path/include/config.inc.php
|
||||||
|
|
||||||
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$final_path/include/config.inc.php"
|
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$final_path/include/config.inc.php"
|
||||||
ynh_replace_string --match_string="__DB_PASS__" --replace_string="$db_pwd" --target_file="$final_path/include/config.inc.php"
|
ynh_replace_string --match_string="__DB_PASS__" --replace_string="$db_pwd" --target_file="$final_path/include/config.inc.php"
|
||||||
ynh_replace_string --match_string="__ADMIN__" --replace_string="$admin" --target_file="$final_path/include/config.inc.php"
|
#ynh_replace_string --match_string="__ADMIN__" --replace_string="$admin" --target_file="$final_path/include/config.inc.php"
|
||||||
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$final_path/include/config.inc.php"
|
#ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$final_path/include/config.inc.php"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# STORE THE CONFIG FILE CHECKSUM
|
# STORE THE CONFIG FILE CHECKSUM
|
||||||
|
|
Loading…
Reference in a new issue