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/install

47 lines
1.2 KiB
Text
Raw Normal View History

2014-05-08 19:46:08 +02:00
#!/bin/bash
# Retrieve arguments
domain=$1
path=$2
2014-07-22 16:08:09 +02:00
admin=$3
2014-05-08 19:46:08 +02:00
app_name="adminer"
# Check domain/path availability
sudo yunohost app checkurl $domain$path -a $app_name
if [[ ! $? -eq 0 ]]; then
exit 1
fi
2014-07-22 16:08:09 +02:00
# Check that admin user is an existing account
sudo yunohost user list --json | grep -q "\"username\": \"$admin\""
if [[ ! $? -eq 0 ]]; then
echo "Error : the chosen admin user does not exist"
exit 1
fi
2014-05-08 19:46:08 +02:00
# Copy files to the right place
final_path=/var/www/$app_name
sudo mkdir -p $final_path
sudo cp -r ../sources/* $final_path
2014-07-22 16:08:09 +02:00
# Configuration
sudo yunohost add addaccess adminer -u $admin
sudo yunohost add setting adminer admin -v $admin
2014-05-08 19:46:08 +02:00
# 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
# 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