mirror of
https://github.com/YunoHost-Apps/emailpoubelle_ynh.git
synced 2024-09-03 18:26:29 +02:00
44 lines
1.3 KiB
Bash
44 lines
1.3 KiB
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
#=================================================
|
|
# LOAD SETTINGS
|
|
#=================================================
|
|
|
|
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)
|
|
|
|
|
|
test -e "$final_path" || ynh_die "The path $final_path does not exist"
|
|
|
|
# Copy source files
|
|
cp -R ../src/bin/ $final_path/bin
|
|
cp -R ../src/lib/ $final_path/lib
|
|
cp -R ../src/lang/ $final_path/lang
|
|
cp -R ../src/www/ $final_path/www
|
|
cp ../src/emailPoubelle.php $final_path/emailPoubelle.php
|
|
cp ../src/emailPoubelleAdmin.php $final_path/emailPoubelleAdmin.php
|
|
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
|