1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/libreerp_ynh.git synced 2024-09-03 19:36:13 +02:00
libreerp_ynh/scripts/install

53 lines
1.2 KiB
Text
Raw Normal View History

2015-09-14 17:12:17 +02:00
#!/bin/bash
2015-09-14 17:18:33 +02:00
app=odoo
2015-09-14 17:12:17 +02:00
set -e
# Retrieve arguments
domain=$1
is_public=$2
odoo_version=$3
admin_password=$4
sudo yunohost app checkport 8069
if [[ ! $? -eq 0 ]]; then
exit 1
fi
# Check domain/path availability
domain=${domain}"/"
sudo yunohost app checkurl $domain -a $app \
|| (echo "Path not available: $domain" && exit 1)
# Remove trailing "/" for next commands
domain=${domain%/}
sudo yunohost app setting $app domain -v $domain
# Install Odoo
2015-09-14 17:42:46 +02:00
# Prepare installation
sudo apt-get -y install curl
2015-09-14 17:12:17 +02:00
# Install Odoo
2015-09-14 17:42:46 +02:00
sudo curl -sS https://nightly.odoo.com/odoo.key | sudo apt-key add -
sudo sh -c 'echo "deb http://nightly.odoo.com/$odoo_version/nightly/deb/ ./" > /etc/apt/sources.list.d/odoo.list'
sudo apt-get update
sudo apt-get -y install wkhtmltopdf
sudo apt-get -y install odoo
2015-09-14 17:12:17 +02:00
2015-09-14 17:42:46 +02:00
# Copy conf file
2015-09-14 17:12:17 +02:00
sudo sed -i "s@ADMIN_PASSWORD@$admin_password@g" ../conf/odoo-server.conf
sudo cp ../conf/odoo-server.conf /etc/odoo-server.conf
2015-09-14 17:42:46 +02:00
# Add services
sudo yunohost service add postgresql
sudo yunohost service add odoo
2015-09-14 17:12:17 +02:00
# Configure Nginx and reload
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
if [ "$is_public" = "Yes" ];
then
sudo yunohost app setting $app skipped_uris -v "/"
fi
sudo service nginx reload
echo $?