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

60 lines
1.6 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
2017-05-16 20:44:51 +02:00
path=$(ynh_normalize_url_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
2017-05-16 20:44:51 +02:00
sudo yunohost app checkurl "${domain}${path}" -a "$app"
2015-05-23 15:04:16 +02:00
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
<<<<<<< HEAD
# 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 "/"
=======
# Set ssowat config
2017-05-16 20:44:51 +02:00
ynh_app_setting_set $app is_public "$is_public"
if [ "$is_public" = "Yes" ];
2013-12-24 13:37:55 +01:00
then
2017-05-16 20:44:51 +02:00
ynh_app_setting_set $app unprotected_uris "/"
>>>>>>> ed68227b97ca7aa0f4e0d0f9450df936e867585f
2013-12-24 13:37:55 +01:00
fi
sudo systemctl reload nginx
2017-05-16 20:44:51 +02:00
sudo yunohost app ssowatconf