1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/adminer_ynh.git synced 2024-09-03 18:06:06 +02:00
adminer_ynh/scripts/upgrade

40 lines
1.1 KiB
Text
Raw Normal View History

2014-05-08 19:46:08 +02:00
#!/bin/bash
app_name="adminer"
domain=$(sudo yunohost app setting $app_name domain)
path=$(sudo yunohost app setting $app_name path)
# Remove trailing "/" for next commands
path=${path%/}
# Get files
bash ../sources/get_sources.sh
# Copy files to the right place
final_path=/var/www/$app_name
sudo mkdir -p $final_path
sudo rm -rf $final_path/*
sudo cp -r ../sources/inc_sources/* $final_path
rm -r ../sources/inc_sources
# Files owned by root, www-data can just read
sudo find $final_path -type f | xargs sudo chmod 644
sudo find $final_path -type d | xargs sudo chmod 755
sudo chown -R root: $final_path
2014-07-22 16:08:09 +02:00
# Configuration
sudo yunohost app addaccess phpmyadmin -u $admin
sudo yunohost app setting phpmyadmin admin -v $admin
2014-05-08 19:46:08 +02:00
# Modify Nginx configuration file and copy it to Nginx conf directory
sed -i "s@YNH_WWW_PATH@$path@g" ../conf/nginx.conf
sed -i "s@YNH_WWW_ALIAS@$final_path/@g" ../conf/nginx.conf
nginxconf=/etc/nginx/conf.d/$domain.d/$app_name.conf
sudo cp ../conf/nginx.conf $nginxconf
sudo chown root: $nginxconf
sudo chmod 600 $nginxconf
sudo service nginx reload
sudo yunohost app ssowatconf