2020-05-17 15:53:04 +02:00
|
|
|
#!/bin/bash
|
|
|
|
# sidekiq
|
|
|
|
echo $app $final_path
|
|
|
|
install -T --mode=0644 -v ../conf/diaspora_sidekiq.service /etc/systemd/system/${app}_sidekiq.service
|
|
|
|
ynh_replace_string --match_string=__APP__ --replace_string=$app --target_file=/etc/systemd/system/${app}_sidekiq.service
|
|
|
|
ynh_replace_string --match_string=__FINALPATH__ --replace_string=$final_path --target_file=/etc/systemd/system/${app}_sidekiq.service
|
|
|
|
# web
|
|
|
|
install -T --mode=0644 -v ../conf/diaspora_web.service /etc/systemd/system/${app}_web.service
|
|
|
|
ynh_replace_string --match_string=__APP__ --replace_string=$app --target_file=/etc/systemd/system/${app}_web.service
|
|
|
|
ynh_replace_string --match_string=__FINALPATH__ --replace_string=$final_path --target_file=/etc/systemd/system/${app}_web.service
|
|
|
|
# tmp files
|
|
|
|
install -T --mode=0644 -v ../conf/diaspora.tmpfiles.d /etc/tmpfiles.d/${app}.conf
|
|
|
|
ynh_replace_string --match_string=__APP__ --replace_string=$app --target_file=/etc/tmpfiles.d/${app}.conf
|
|
|
|
# target unit
|
|
|
|
install -T --mode=0644 -v ../conf/diaspora.target /etc/systemd/system/${app}.target
|
|
|
|
ynh_replace_string --match_string=__APP__ --replace_string=$app --target_file=/etc/systemd/system/${app}.target
|
|
|
|
# reload, create, enable and start stuff
|
|
|
|
systemctl daemon-reload
|
|
|
|
systemd-tmpfiles --create
|
|
|
|
systemctl enable ${app}.target ${app}_sidekiq.service ${app}_web.service
|
|
|
|
systemctl restart ${app}.target
|
2020-05-21 14:46:01 +02:00
|
|
|
|
|
|
|
# wait for startup
|
|
|
|
timeout=100
|
|
|
|
for i in $(seq 1 $timeout)
|
|
|
|
do
|
|
|
|
# Read the log until the sentence is found, that means the app finished to start. Or run until the timeout
|
|
|
|
if grep --extended-regexp --quiet "listening on addr" "$final_path/diaspora/log/unicorn-stderr.log"
|
|
|
|
then
|
|
|
|
ynh_print_info --message="Diaspora* is up and running\!"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
if [ $i -eq 3 ]; then
|
|
|
|
echo -n "Please wait, diaspora* is starting" >&2
|
|
|
|
fi
|
|
|
|
if [ $i -ge 3 ]; then
|
|
|
|
echo -n "." >&2
|
|
|
|
fi
|
|
|
|
sleep 1
|
|
|
|
done
|