mirror of
https://github.com/YunoHost-Apps/rocketchat_ynh.git
synced 2024-09-03 20:16:25 +02:00
Adds set eu to install and upgrade script
This commit is contained in:
parent
fb882baab5
commit
efb93bd612
2 changed files with 5 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
set -eu
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# GENERIC START
|
# GENERIC START
|
||||||
|
@ -34,11 +35,11 @@ NODE_VERSION=4.7.1
|
||||||
# Check domain/path availability
|
# Check domain/path availability
|
||||||
sudo yunohost app checkurl $domain -a rocketchat
|
sudo yunohost app checkurl $domain -a rocketchat
|
||||||
if [[ ! $? -eq 0 ]]; then
|
if [[ ! $? -eq 0 ]]; then
|
||||||
exit 1
|
ynh_die
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Save specific settings
|
# Save specific settings
|
||||||
sudo yunohost app setting rocketchat is_public -v $is_public
|
ynh_app_setting_set $app is_public $is_public
|
||||||
|
|
||||||
#Install dependencies
|
#Install dependencies
|
||||||
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
|
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
|
||||||
|
@ -78,7 +79,7 @@ sudo chown -R www-data: $final_path
|
||||||
sudo service nginx reload
|
sudo service nginx reload
|
||||||
if [ "$is_public" = "Yes" ];
|
if [ "$is_public" = "Yes" ];
|
||||||
then
|
then
|
||||||
sudo yunohost app setting rocketchat unprotected_uris -v "/"
|
ynh_app_setting_set $app unprotected_uris "/"
|
||||||
fi
|
fi
|
||||||
sudo systemctl start Rocketchat.service
|
sudo systemctl start Rocketchat.service
|
||||||
sudo systemctl enable Rocketchat.service
|
sudo systemctl enable Rocketchat.service
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
set -eu
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# GENERIC START
|
# GENERIC START
|
||||||
|
|
Loading…
Add table
Reference in a new issue