1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00

corrected service name and added debug echo

This commit is contained in:
Jean-Baptiste Holcroft 2017-09-14 15:41:27 +02:00
parent 48fe8b8fac
commit 83dcebe850

View file

@ -140,18 +140,17 @@ systemctl enable $app.uwsgi.service
systemctl restart $app.uwsgi.service systemctl restart $app.uwsgi.service
# Add weblate.uwsgi as a service # Add weblate.uwsgi as a service
yunohost service add $app.service yunohost service add $app.uwsgi.service
#================================================= #=================================================
# SPECIFIC SETUP settings.py # SPECIFIC SETUP settings.py
# https://docs.weblate.org/en/latest/admin/install.html#installation # https://docs.weblate.org/en/latest/admin/install.html#installation
#================================================= #=================================================
echo "SPECIFIC SETUP settings.py"
db_pwd=$(ynh_app_setting_get $app mysqlpwd) db_pwd=$(ynh_app_setting_get $app mysqlpwd)
admin_mail="$(ynh_user_get_info $admin mail)" admin_mail="$(ynh_user_get_info $admin mail)"
key=$(ynh_string_random 64) key=$(ynh_string_random 64)
cp $final_path/weblate/settings_example.py $final_path/weblate/settings.py
cp ../conf/settings.py $final_path/weblate/settings.py cp ../conf/settings.py $final_path/weblate/settings.py
ynh_replace_string "__NAME__" "$app" $final_path/weblate/settings.py ynh_replace_string "__NAME__" "$app" $final_path/weblate/settings.py
@ -166,16 +165,16 @@ ynh_replace_string "__KEY__" "$key" $final_path/weblate/settings.py
# SPECIFIC SETUP Filling up the database # SPECIFIC SETUP Filling up the database
# https://docs.weblate.org/en/latest/admin/install.html#filling-up-the-database # https://docs.weblate.org/en/latest/admin/install.html#filling-up-the-database
#========================================== #==========================================
echo "SPECIFIC SETUP Filling up the database"
# set up database # set up database
$final_path/manage.py migrate --noinput source ${final_path}/venv/bin/activate && $final_path/manage.py migrate --noinput
# generate static files # generate static files
$final_path/manage.py collectstatic --noinput source ${final_path}/venv/bin/activate && $final_path/manage.py collectstatic --noinput
#================================================= #=================================================
# SETUP CRON # SETUP CRON
#================================================= #=================================================
echo "SETUP CRON"
cp ../conf/cron_weblate /etc/cron.d/$app cp ../conf/cron_weblate /etc/cron.d/$app
ynh_replace_string "__FINALPATH__" "$final_path/" /etc/cron.d/$app ynh_replace_string "__FINALPATH__" "$final_path/" /etc/cron.d/$app
@ -202,7 +201,6 @@ chown -R root: $final_path
# Use logrotate to manage application logfile(s) # Use logrotate to manage application logfile(s)
ynh_use_logrotate ynh_use_logrotate
#================================================= #=================================================
# SETUP SSOWAT # SETUP SSOWAT
#================================================= #=================================================