mirror of
https://github.com/YunoHost-Apps/phpmyadmin_ynh.git
synced 2024-09-03 19:56:46 +02:00
Merge pull request #75 from YunoHost-Apps/enh_update_4.8.0.1
Update to upstream version 4.8.0.1
This commit is contained in:
commit
b2375309fe
4 changed files with 10 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
||||||
SOURCE_URL=https://github.com/phpmyadmin/phpmyadmin/archive/RELEASE_4_7_7.tar.gz
|
SOURCE_URL=https://github.com/phpmyadmin/phpmyadmin/archive/RELEASE_4_8_0_1.tar.gz
|
||||||
SOURCE_SUM=f8af08bb9e90c4c18b634626e6ab525d066d8e1a6fcf6a19cb0e14b29344adc8
|
SOURCE_SUM=0014d662093e032916286bbd90bf587d112a3b13d6cb7d52b31b567c34474c01
|
||||||
SOURCE_SUM_PRG=sha256sum
|
SOURCE_SUM_PRG=sha256sum
|
||||||
SOURCE_FORMAT=tar.gz
|
SOURCE_FORMAT=tar.gz
|
||||||
SOURCE_IN_SUBDIR=true
|
SOURCE_IN_SUBDIR=true
|
||||||
|
|
|
@ -6,9 +6,9 @@
|
||||||
"en": "Manage MySQL databases over the web",
|
"en": "Manage MySQL databases over the web",
|
||||||
"fr": "Application web de gestion des bases de données MySQL"
|
"fr": "Application web de gestion des bases de données MySQL"
|
||||||
},
|
},
|
||||||
"version": "4.7.7",
|
"version": "4.8.0.1~ynh1",
|
||||||
"url": "http://www.phpmyadmin.net",
|
"url": "http://www.phpmyadmin.net",
|
||||||
"license": "GPL-2",
|
"license": "GPL-2.0-only",
|
||||||
"maintainer": {
|
"maintainer": {
|
||||||
"name": "julien",
|
"name": "julien",
|
||||||
"email": "julien.malik@paraiso.me"
|
"email": "julien.malik@paraiso.me"
|
||||||
|
|
|
@ -135,6 +135,9 @@ chown -R root: $final_path
|
||||||
# config.inc.php contains sensitive data, restrict its access
|
# config.inc.php contains sensitive data, restrict its access
|
||||||
chown root:$app $final_path/config.inc.php
|
chown root:$app $final_path/config.inc.php
|
||||||
chmod 640 $final_path/config.inc.php
|
chmod 640 $final_path/config.inc.php
|
||||||
|
# Setup phpMyAdmin temporary folder
|
||||||
|
mkdir -p $final_path/tmp
|
||||||
|
chown $app: $final_path/tmp
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# SETUP SSOWAT
|
# SETUP SSOWAT
|
||||||
|
|
|
@ -151,6 +151,9 @@ chown -R root: $final_path
|
||||||
# config.inc.php contains sensitive data, restrict its access
|
# config.inc.php contains sensitive data, restrict its access
|
||||||
chown root:$app $final_path/config.inc.php
|
chown root:$app $final_path/config.inc.php
|
||||||
chmod 640 $final_path/config.inc.php
|
chmod 640 $final_path/config.inc.php
|
||||||
|
# Setup phpMyAdmin temporary folder
|
||||||
|
mkdir -p $final_path/tmp
|
||||||
|
chown $app: $final_path/tmp
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# SETUP SSOWAT
|
# SETUP SSOWAT
|
||||||
|
|
Loading…
Reference in a new issue