mirror of
https://github.com/YunoHost-Apps/phpmyadmin_ynh.git
synced 2024-09-03 19:56:46 +02:00
[enh] remove cookie-auth-mode specific setting that we don't use (fix #36)
This commit is contained in:
parent
1953bd10f6
commit
fd083edc12
2 changed files with 6 additions and 3 deletions
|
@ -14,7 +14,12 @@
|
||||||
* This is needed for cookie based authentication to encrypt password in
|
* This is needed for cookie based authentication to encrypt password in
|
||||||
* cookie
|
* cookie
|
||||||
*/
|
*/
|
||||||
$cfg['blowfish_secret'] = 'YNH_COOKIE_PASSWD'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
|
/* [YunoHost]
|
||||||
|
* We use the 'config' auth mode, so we don't care about settings
|
||||||
|
* specific to the 'cookie' auth mode
|
||||||
|
*/
|
||||||
|
$cfg['blowfish_secret'] = 'NOT_USED';
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Servers configuration
|
* Servers configuration
|
||||||
|
|
|
@ -33,7 +33,6 @@ sudo cp -r ../phpMyAdmin-$version-all-languages/* $final_path
|
||||||
echo "Setting up database..."
|
echo "Setting up database..."
|
||||||
db_user=phpmyadmin
|
db_user=phpmyadmin
|
||||||
db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d 'A-Za-z0-9' | sed -n 's/\(.\{24\}\).*/\1/p')
|
db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d 'A-Za-z0-9' | sed -n 's/\(.\{24\}\).*/\1/p')
|
||||||
cookie_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d 'A-Za-z0-9' | sed -n 's/\(.\{24\}\).*/\1/p')
|
|
||||||
sed -i "s@YNH_PMA_USER@$db_user@g" ../conf/create_db.sql
|
sed -i "s@YNH_PMA_USER@$db_user@g" ../conf/create_db.sql
|
||||||
sudo yunohost app initdb $db_user -p $db_pwd
|
sudo yunohost app initdb $db_user -p $db_pwd
|
||||||
mysql -u root -p$(sudo cat /etc/yunohost/mysql) < ../conf/create_db.sql
|
mysql -u root -p$(sudo cat /etc/yunohost/mysql) < ../conf/create_db.sql
|
||||||
|
@ -46,7 +45,6 @@ sed -i "s@YNH_DOMAIN@$domain@g" ../conf/config.inc.php
|
||||||
sed -i "s@YNH_PMA_USER@$db_user@g" ../conf/config.inc.php
|
sed -i "s@YNH_PMA_USER@$db_user@g" ../conf/config.inc.php
|
||||||
sed -i "s@YNH_PMA_PASSWORD@$db_pwd@g" ../conf/config.inc.php
|
sed -i "s@YNH_PMA_PASSWORD@$db_pwd@g" ../conf/config.inc.php
|
||||||
sed -i "s@YNH_MYSQL_ROOT_PASSWORD@$(sudo cat /etc/yunohost/mysql)@g" ../conf/config.inc.php
|
sed -i "s@YNH_MYSQL_ROOT_PASSWORD@$(sudo cat /etc/yunohost/mysql)@g" ../conf/config.inc.php
|
||||||
sed -i "s@YNH_COOKIE_PASSWD@$cookie_pwd@g" ../conf/config.inc.php
|
|
||||||
sudo cp ../conf/config.inc.php $final_path
|
sudo cp ../conf/config.inc.php $final_path
|
||||||
|
|
||||||
sudo yunohost app addaccess phpmyadmin -u $admin
|
sudo yunohost app addaccess phpmyadmin -u $admin
|
||||||
|
|
Loading…
Reference in a new issue