1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/emailpoubelle_ynh.git synced 2024-09-03 18:26:29 +02:00
emailpoubelle_ynh/scripts/upgrade

46 lines
1.4 KiB
Text
Raw Normal View History

2018-11-18 16:00:35 +01:00
#!/bin/bash
2018-11-24 11:27:04 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2018-11-18 16:00:35 +01:00
2018-11-24 11:27:04 +01:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
path_url=$(ynh_app_setting_get $app path)
admin=$(ynh_app_setting_get $app admin)
final_path=$(ynh_app_setting_get $app final_path)
db_name=$(ynh_app_setting_get $app db_name)
final_path=/var/www/$app
2018-11-18 16:00:35 +01:00
# Copy source files
2018-11-24 11:27:04 +01:00
test -e "$final_path" || ynh_die "This path already contains a folder"
2018-11-18 16:00:35 +01:00
sudo mkdir -p $final_path
sudo cp -R ../src/bin/ $final_path/bin
sudo cp -R ../src/lib/ $final_path/lib
sudo cp -R ../src/locale/ $final_path/locale
sudo cp -R ../src/www/ $final_path/www
sudo cp ../src/emailPoubelle.php $final_path/emailPoubelle.php
sudo chown -R www-data:www-data $final_path
#adding php-cli for cron
sudo apt-get update -qq
sudo apt-get install -yqq php5-cli
#adding cronjob for removing expired email addresses
sudo echo "$cronline" | sudo tee -a /etc/cron.d/emailpoubelle
sudo chmod 644 /etc/cron.d/emailpoubelle
# Restart services
sudo service nginx reload
sudo service postfix reload
sudo yunohost app ssowatconf