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

74 lines
1.9 KiB
Text
Raw Normal View History

2015-04-28 17:54:25 +02:00
#!/bin/bash
2017-02-21 04:04:26 +01:00
# Exit on command errors and treat unset variables as an error
set -eu
2017-02-21 04:02:03 +01:00
source .fonctions # Charge les fonctions génériques habituellement utilisées dans le script
2016-09-20 01:51:28 +02:00
CLEAN_SETUP () {
2017-02-21 04:02:03 +01:00
# Nettoyage des résidus d'installation non pris en charge par le script remove.
# Clean hosts
sudo sed -i '/#SPIP/d' /etc/hosts
2016-09-20 01:51:28 +02:00
}
2017-02-21 04:02:03 +01:00
TRAP_ON # Active trap pour arrêter le script si une erreur est détectée.
2016-08-30 00:22:47 +02:00
domain=$YNH_APP_ARG_DOMAIN
path=$YNH_APP_ARG_PATH
2017-02-21 16:54:39 +01:00
admin_spip=$YNH_APP_ARG_ADMIN
2016-08-30 00:22:47 +02:00
language=$YNH_APP_ARG_LANGUAGE
2017-02-21 15:29:47 +01:00
#multisite=$YNH_APP_ARG_MULTISITE
2016-09-20 01:51:28 +02:00
is_public=$YNH_APP_ARG_IS_PUBLIC
app=$YNH_APP_INSTANCE_NAME
# Source app helpers
source /usr/share/yunohost/helpers
CHECK_VAR "$app" "app name not set"
2017-02-21 16:54:39 +01:00
CHECK_USER "$admin_spip"
2015-04-28 17:54:25 +02:00
2016-09-20 01:51:28 +02:00
CHECK_PATH
2015-04-28 17:05:35 +02:00
2016-09-20 01:51:28 +02:00
CHECK_DOMAINPATH
2015-04-28 17:05:35 +02:00
2016-09-20 01:51:28 +02:00
CHECK_FINALPATH
2015-04-28 17:05:35 +02:00
2017-02-21 04:02:03 +01:00
ynh_app_setting_set $app domain $domain
ynh_app_setting_set $app path $path
2017-02-21 16:54:39 +01:00
ynh_app_setting_set $app admin $admin_spip
2017-02-21 04:02:03 +01:00
ynh_app_setting_set $app is_public $is_public
ynh_app_setting_set $app language $language
2017-02-21 15:29:47 +01:00
#ynh_app_setting_set $app multisite $multisite
2015-04-28 17:05:35 +02:00
2016-09-20 01:51:28 +02:00
GENERATE_DB $app # Créer une base de données et un utilisateur dédié au nom de l'app.
2015-04-28 17:05:35 +02:00
# Crée le repertoire de destination et stocke son emplacement.
sudo mkdir "$final_path"
2017-02-21 15:34:35 +01:00
ynh_app_setting_set $app final_path $final_path
2016-09-20 01:51:28 +02:00
SETUP_SOURCE "spip-3.1.zip"
2015-04-28 17:05:35 +02:00
# Set permissions to spip directory
2015-04-28 17:05:35 +02:00
sudo chown -R www-data: $final_path
# Modify Nginx configuration file and copy it to Nginx conf directory
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
2015-04-28 19:58:18 +02:00
sed -i "s@ALIASTOCHANGE@$final_path@g" ../conf/nginx.conf
2015-04-28 17:05:35 +02:00
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/spip.conf
2016-09-20 01:51:28 +02:00
POOL_FPM
2015-04-28 18:46:07 +02:00
2015-04-28 17:05:35 +02:00
# Reload Nginx and regenerate SSOwat conf
2015-04-28 18:46:07 +02:00
sudo service php5-fpm restart
2015-04-28 17:05:35 +02:00
sudo service nginx reload
2017-02-21 04:02:03 +01:00
if [ "$is_public" = "No" ];
then
# Retire l'accès public
ynh_app_setting_delete $app unprotected_uris
sudo yunohost app ssowatconf
fi
# Nettoyer hosts
sudo sed -i '/#SPIP/d' /etc/hosts