1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/rocketchat_ynh.git synced 2024-09-03 20:16:25 +02:00
rocketchat_ynh/scripts/_common.sh

32 lines
1.1 KiB
Bash
Raw Normal View History

# common.sh
2017-09-05 08:45:06 +02:00
ROCKETCHAT_VERSION=0.58.2
ROCKETCHAT_SHASUM=f87ad01656e345c1f0e5c449e09c33d5819912e96b080eb2a93935de772726c1
NODE_VERSION=4.7.1
waitforservice() {
isup=false; x=90; while [ $x -gt 0 ];do echo "Waiting approx. $x seconds..."; \
x=$(( $x - 1 )); sleep 1; if $(curl -m 1 -s localhost:$port${path:-/}/api/v1/info | \
grep -e "success.*true" >/dev/null 2>&1); then isup=true; break; fi; done && if $isup; \
2017-09-04 22:24:56 +02:00
then echo "service is up"; else {ynh_die "$app could not be started"; fi
}
installdeps(){
#Install dependencies
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6
echo "deb http://repo.mongodb.org/apt/debian jessie/mongodb-org/3.4 main" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.list
sudo apt-get update
sudo apt-get install -y mongodb-org gzip curl graphicsmagick npm
# start mongodb service
sudo systemctl enable mongod.service
sudo systemctl start mongod.service
# add mongodb to services
sudo yunohost service add mongod -l /var/log/mongodb/mongod.log
# Meteor needs at least this version of node to work.
sudo npm install -g n
sudo n $NODE_VERSION
}