mirror of
https://github.com/YunoHost-Apps/lutim_ynh.git
synced 2024-09-03 19:36:24 +02:00
85 lines
2.5 KiB
Bash
85 lines
2.5 KiB
Bash
#!/bin/bash
|
|
|
|
# Retrieve arguments
|
|
domain=$1
|
|
path=$2
|
|
admin=$3
|
|
is_public=$4
|
|
|
|
# Check if admin exists
|
|
sudo yunohost user list --json | grep -q "\"username\": \"$admin\""
|
|
if [[ ! $? -eq 0 ]]; then
|
|
echo "Wrong admin"
|
|
exit 1
|
|
fi
|
|
|
|
# Check domain/path availability
|
|
sudo yunohost app checkurl $domain$path -a leed
|
|
if [[ ! $? -eq 0 ]]; then
|
|
exit 1
|
|
fi
|
|
|
|
# Add settings to YunoHost
|
|
sudo yunohost app setting lutim admin -v $admin
|
|
sudo yunohost app setting lutim domain -v $domain
|
|
|
|
# Copy files to right place
|
|
final_path=/var/www/lutim
|
|
sudo mkdir -p $final_path
|
|
sudo cp -a ../sources/lutim-master/* $final_path
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/lutim.conf
|
|
|
|
# Installation du module perl carton
|
|
yes | sudo cpan Carton
|
|
# Installation de perlmagick, interface perl pour imagemagick
|
|
sudo apt-get install perlmagick -qy
|
|
|
|
# Installation de lutim via carton
|
|
cd $final_path
|
|
echo pwd
|
|
sudo carton install
|
|
|
|
## Copie et configuration du fichier de conf.
|
|
sudo cp ../conf/lutim.conf.template $final_path/lutim.conf
|
|
sudo sed -i "s@__DOMAIN__@$domain@g" $final_path/lutim.conf
|
|
|
|
# Mise en place des scripts init
|
|
sudo cp ../sources/lutim-master/utilities/lutim.init /etc/init.d/lutim
|
|
sudo cp ../conf/lutim.default /etc/default/lutim
|
|
sudo chmod +x /etc/init.d/lutim
|
|
chown root:root /etc/init.d/lutim /etc/default/lutim
|
|
sudo sed -i "s@__FINALPATH__@$final_path@g" /etc/default/lutim
|
|
|
|
## Démarrage auto des scripts init
|
|
sudo update-rc.d lutim defaults
|
|
# sudo update-rc.d -f lutim remove
|
|
|
|
# Change variables in nginx configuration
|
|
sudo sed -i "s@__PATH__@$path@g" /etc/nginx/conf.d/$domain.d/lutim.conf
|
|
sudo sed -i "s@__FINALPATH__@$final_path/@g" /etc/nginx/conf.d/$domain.d/lutim.conf
|
|
|
|
## Voir les crons et les mettre en place.
|
|
|
|
|
|
# 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
|
|
# www-data can write on plugins and cache
|
|
# sudo chown -R www-data $final_path/cache $final_path/plugins
|
|
# Set right permissions
|
|
sudo chown -R www-data: $final_path
|
|
|
|
# Make app public or private
|
|
sudo yunohost app setting lutim is_public -v "$is_public"
|
|
if [ "$is_public" = "Yes" ];
|
|
then
|
|
sudo yunohost app setting lutim skipped_uris -v "/"
|
|
else # Si l'app est privée, seul le visionnage des images est public
|
|
sudo yunohost app setting lutim skipped_regex -v "/(stats|manifest.webapp|(d|m)/.+)?$"
|
|
fi # REGEX À INVERSER ! Je pense...
|
|
|
|
# Reload Nginx, start lutim and regenerate SSOwat conf
|
|
sudo service nginx reload
|
|
sudo /etc/init.d/lutim start
|
|
sudo yunohost app ssowatconf
|