mirror of
https://github.com/YunoHost-Apps/rocketchat_ynh.git
synced 2024-09-03 20:16:25 +02:00
Fixes manifest and remove script
This commit is contained in:
parent
efb93bd612
commit
d654688b9c
2 changed files with 8 additions and 5 deletions
|
@ -1,19 +1,20 @@
|
|||
{
|
||||
"package_format": 1,
|
||||
"packaging_format": 1,
|
||||
"name": "RocketChat",
|
||||
"id": "rocketchat",
|
||||
"description": {
|
||||
"en": "the ultimate chat platform"
|
||||
},
|
||||
"url": "https://github.com/selamanse/rocketchat_ynh",
|
||||
"license": "free",
|
||||
"maintainer": {
|
||||
"name": "selamanse",
|
||||
"email": "selamanse@scheinfrei.info",
|
||||
"url": "https://github.com/selamanse"
|
||||
},
|
||||
"multi_instance": "false",
|
||||
"multi_instance": false,
|
||||
"services": [
|
||||
"nginx",
|
||||
"mongodb"
|
||||
"nginx"
|
||||
],
|
||||
"requirements": {
|
||||
"yunohost": ">> 2.5.6"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -u
|
||||
|
||||
#=================================================
|
||||
# GENERIC START
|
||||
|
@ -9,7 +10,8 @@
|
|||
source _common.sh
|
||||
source /usr/share/yunohost/helpers
|
||||
|
||||
domain=$(sudo yunohost app setting rocketchat domain)
|
||||
app=$YNH_APP_INSTANCE_NAME
|
||||
domain=$(ynh_app_setting_get $app domain)
|
||||
|
||||
sudo rm -rf /var/www/rocketchat
|
||||
|
||||
|
|
Loading…
Reference in a new issue