mirror of
https://github.com/YunoHost-Apps/etherpad_ynh.git
synced 2024-09-03 18:36:10 +02:00
70 lines
2 KiB
Bash
70 lines
2 KiB
Bash
#!/bin/bash
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
# Source YunoHost helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
# Retrieve app settings
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
path=$(ynh_app_setting_get "$app" path)
|
|
dbuser=$(ynh_app_setting_get "$app" dbuser)
|
|
dbname=$(ynh_app_setting_get "$app" dbname)
|
|
is_public=$(ynh_app_setting_get "$app" is_public)
|
|
port=9001
|
|
|
|
root_pwd=$(sudo cat /etc/yunohost/mysql)
|
|
|
|
# Remove trailing "/" for next commands
|
|
path=${path%/}
|
|
|
|
|
|
# create app dir and compy sources
|
|
final_path=/var/www/$app
|
|
sudo mkdir -p $final_path
|
|
|
|
sudo cp -a ../sources/* $final_path
|
|
|
|
sudo cp ../conf/settings.json $final_path
|
|
# Change variables in etherpad configuration
|
|
sudo sed -i "s/yunouser/$dbuser/g" $final_path/settings.json
|
|
sudo sed -i "s/yunopass/$dbpass/g" $final_path/settings.json
|
|
sudo sed -i "s/yunobase/$dbname/g" $final_path/settings.json
|
|
sudo sed -i "s/KEY/$key/g" $final_path/settings.json
|
|
|
|
sudo npm cache clear
|
|
sudo $final_path/bin/installDeps.sh > /dev/null 2>&1
|
|
sudo npm install forever -g > /dev/null 2>&1
|
|
|
|
# Set permissions to etherpad directory
|
|
sudo chown -R www-data: $final_path
|
|
|
|
# service
|
|
sudo cp ../conf/etherpad-lite /etc/init.d/$app
|
|
sudo sed -i "s/APPTOCHANGE/$app/g" /etc/init.d/$app
|
|
sudo chmod +x /etc/init.d/$app
|
|
sudo update-rc.d $app defaults
|
|
|
|
# nginx
|
|
nginx_conf_path=/etc/nginx/conf.d/$domain.d/$app.conf
|
|
if [ "$path" = "" ]; then
|
|
sudo cp ../conf/nginx.conf-nosub $nginx_conf_path
|
|
else
|
|
sudo cp ../conf/nginx.conf $nginx_conf_path
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
|
sudo sed -i "s@YNH_PATH@$path@g" $nginx_conf_path
|
|
sudo sed -i "s@YNH_PORT@$port@g" $nginx_conf_path
|
|
sudo sed -i "s@YNH_DOMAIN@$domain@g" $nginx_conf_path
|
|
fi
|
|
|
|
# Reload Nginx and regenerate SSOwat conf
|
|
sudo service nginx reload
|
|
# If app is public, add url to SSOWat conf as skipped_uris
|
|
if [[ $is_public -eq 1 ]]; then
|
|
# unprotected_uris allows SSO credentials to be passed anyway.
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
|
fi
|
|
|
|
sudo yunohost app ssowatconf
|
|
|
|
sudo service etherpad-lite start
|