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",
|
"name": "RocketChat",
|
||||||
"id": "rocketchat",
|
"id": "rocketchat",
|
||||||
"description": {
|
"description": {
|
||||||
"en": "the ultimate chat platform"
|
"en": "the ultimate chat platform"
|
||||||
},
|
},
|
||||||
|
"url": "https://github.com/selamanse/rocketchat_ynh",
|
||||||
|
"license": "free",
|
||||||
"maintainer": {
|
"maintainer": {
|
||||||
"name": "selamanse",
|
"name": "selamanse",
|
||||||
"email": "selamanse@scheinfrei.info",
|
"email": "selamanse@scheinfrei.info",
|
||||||
"url": "https://github.com/selamanse"
|
"url": "https://github.com/selamanse"
|
||||||
},
|
},
|
||||||
"multi_instance": "false",
|
"multi_instance": false,
|
||||||
"services": [
|
"services": [
|
||||||
"nginx",
|
"nginx"
|
||||||
"mongodb"
|
|
||||||
],
|
],
|
||||||
"requirements": {
|
"requirements": {
|
||||||
"yunohost": ">> 2.5.6"
|
"yunohost": ">> 2.5.6"
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
set -u
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# GENERIC START
|
# GENERIC START
|
||||||
|
@ -9,7 +10,8 @@
|
||||||
source _common.sh
|
source _common.sh
|
||||||
source /usr/share/yunohost/helpers
|
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
|
sudo rm -rf /var/www/rocketchat
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue