1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/privatebin_ynh.git synced 2024-09-03 20:15:56 +02:00
privatebin_ynh/scripts/install

57 lines
1.5 KiB
Text
Raw Normal View History

2013-12-24 13:37:55 +01:00
#!/bin/bash
# Exit on command errors and treat unset variables as an error
set -eu
# Source app helpers
source ./_common
source /usr/share/yunohost/helpers
2013-12-24 13:37:55 +01:00
# Retrieve arguments
domain=$YNH_APP_ARG_DOMAIN
path=$YNH_APP_ARG_PATH
is_public=$YNH_APP_ARG_IS_PUBLIC
2013-12-24 13:37:55 +01:00
2016-08-24 19:43:33 +02:00
app=$YNH_APP_INSTANCE_NAME
2013-12-24 13:37:55 +01:00
# Check domain/path availability
sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|| ynh_die "Path not available: ${domain}${path}"
2013-12-24 13:37:55 +01:00
2015-05-23 15:04:16 +02:00
# Remove trailing "/" for next commands
if [[ ! "$path" == "/" ]]; then
path=${path%/}
fi
2013-12-24 13:37:55 +01:00
# Copy files to the right place
2016-08-24 19:43:33 +02:00
final_path=/var/www/$app
2013-12-24 13:37:55 +01:00
sudo mkdir -p $final_path
extract_source $final_path
2013-12-24 13:37:55 +01:00
# Create system user dedicace for this app
ynh_system_user_create $app
# Files owned by user specific can just read
2013-12-24 13:37:55 +01:00
sudo find $final_path -type f | xargs sudo chmod 644
sudo find $final_path -type d | xargs sudo chmod 755
2017-04-17 19:49:45 +02:00
sudo chown -R root: $final_path
2013-12-24 13:37:55 +01:00
# except for data and tmp subdir, where www-data must have write permissions
sudo mkdir -p $final_path/{data,tmp}
sudo chown -R $app:root $final_path/{data,tmp}
2013-12-24 13:37:55 +01:00
sudo chmod 700 $final_path/{data,tmp}
# Modify Nginx configuration file and copy it to Nginx conf directory
ynh_nginx_config
2013-12-24 13:37:55 +01:00
2017-04-16 23:57:23 +02:00
# Create the php-fpm pool config
ynh_fpm_config
2017-04-16 23:57:23 +02:00
# 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 "/"
2013-12-24 13:37:55 +01:00
fi
sudo systemctl reload nginx
sudo yunohost app ssowatconf