mirror of
https://github.com/YunoHost-Apps/mstream_ynh.git
synced 2024-09-03 19:46:17 +02:00
Fix
This commit is contained in:
parent
636c9d9d39
commit
ddca1b75b2
3 changed files with 10 additions and 9 deletions
|
@ -2,8 +2,7 @@ Some long and extensive description of what the app is and does, lorem ipsum dol
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
||||||
- Ut enim ad minim veniam, quis nostrud exercitation ullamco ;
|
Cross Platform. Works on Windows, OSX, Linux, & FreeBSD
|
||||||
- Laboris nisi ut aliquip ex ea commodo consequat ;
|
Light on memory and CPU
|
||||||
- Duis aute irure dolor in reprehenderit in voluptate ;
|
Tested on multi-terabyte libraries
|
||||||
- Velit esse cillum dolore eu fugiat nulla pariatur ;
|
Runs on ARM boards like the Raspberry Pi
|
||||||
- Excepteur sint occaecat cupidatat non proident, sunt in culpa."
|
|
||||||
|
|
|
@ -18,16 +18,15 @@
|
||||||
},
|
},
|
||||||
"license": "AGPL-3.0-only",
|
"license": "AGPL-3.0-only",
|
||||||
"maintainer": {
|
"maintainer": {
|
||||||
"name": "John doe",
|
"name": "",
|
||||||
"email": "john.doe@example.com"
|
"email": ""
|
||||||
},
|
},
|
||||||
"requirements": {
|
"requirements": {
|
||||||
"yunohost": ">= 4.3.0"
|
"yunohost": ">= 4.3.0"
|
||||||
},
|
},
|
||||||
"multi_instance": true,
|
"multi_instance": true,
|
||||||
"services": [
|
"services": [
|
||||||
"nginx",
|
"nginx"
|
||||||
"mysql"
|
|
||||||
],
|
],
|
||||||
"arguments": {
|
"arguments": {
|
||||||
"install" : [
|
"install" : [
|
||||||
|
|
|
@ -110,6 +110,9 @@ ynh_app_setting_set --app=$app --key=datadir --value=$datadir
|
||||||
|
|
||||||
mkdir -p $datadir
|
mkdir -p $datadir
|
||||||
|
|
||||||
|
mkdir -p $datadir/media/album-art
|
||||||
|
mkdir -p $datadir/media/db
|
||||||
|
|
||||||
chmod 750 "$datadir"
|
chmod 750 "$datadir"
|
||||||
chmod -R o-rwx "$datadir"
|
chmod -R o-rwx "$datadir"
|
||||||
chown -R $app:www-data "$datadir"
|
chown -R $app:www-data "$datadir"
|
||||||
|
|
Loading…
Reference in a new issue