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

31 lines
748 B
Text
Raw Normal View History

2014-06-02 13:38:03 +02:00
#!/bin/bash
# Retrieve settings
2016-02-03 16:48:44 +01:00
app=linuxdash
domain=$(sudo yunohost app setting $app domain)
path=$(sudo yunohost app setting $app path)
2014-06-02 13:38:03 +02:00
# Remove trailing "/" for next commands
path=${path%/}
# Copy files to the right place
2016-02-03 16:48:44 +01:00
final_path=/var/www/$app
2014-06-02 13:38:03 +02:00
sudo mkdir -p $final_path
sudo cp -a ../sources/* $final_path
2014-06-02 14:22:42 +02:00
# Set permissions
sudo chown -R www-data: $final_path
2014-06-02 13:38:03 +02:00
# Modify Nginx configuration file and copy it to Nginx conf directory
sed -i "s@YNH_WWW_PATH@$path@g" ../conf/nginx.conf
2016-02-03 16:48:44 +01:00
nginxconf=/etc/nginx/conf.d/$domain.d/$app.conf
2014-06-02 13:38:03 +02:00
sudo cp ../conf/nginx.conf $nginxconf
sudo chown root: $nginxconf
sudo chmod 600 $nginxconf
2016-02-03 16:48:44 +01:00
# Restart Linux-dash service
sudo supervisorctl restart $app
2014-06-02 13:38:03 +02:00
# Reload web server & sso
sudo service nginx reload