home · contact · privacy
Fix faulty filename as per systemd unit file reference.
[config] / bullseye / setup_scripts / setup_microblogpub.sh
index 60f3c5798e4b5e336083fe65efddb9bbfdcaeb37..d0f68c938fca59b0dbc4f72ae9655e73cd28edea 100755 (executable)
@@ -26,20 +26,33 @@ python_version=3.11.1
 python_dirname="Python-${python_version}"
 su -lc "wget https://www.python.org/ftp/python/${python_version}/${python_dirname}.tgz" plom
 su -lc "tar -xvf ${python_dirname}.tgz" plom
-su -lc "cd /home/plom/${python_dirname} && ./configure --enable-optimizations && make && make test"
+su -lc "cd /home/plom/${python_dirname} && ./configure --enable-optimizations && make"
 cd /home/plom/${python_dirname}/
 make altinstall
 cd
-# TODO delete python build dir
-su -lc "curl -sSL https://install.python-poetry.org | python3" - plom
+rm -rf /home/plom/${python_dirname}
+
+# Configure/install Poetry and microblog.pub.
+su -lc "curl -sSL https://install.python-poetry.org | python3.11" - plom
 su -lc "git clone https://git.sr.ht/~tsileo/microblog.pub testing.microblog.pub" - plom
 su -lc "poetry config installer.parallel false" - plom
 su -lc "cd testing.microblog.pub && poetry install" - plom
-su -lc "cd testing.microblog.pub && poetry run inv configuration-wizard" - plom
-su -lc "cd testing.microblog.pub && poetry run inv migrate-db" - plom
-# VENV_DIR=/home/ubuntu/.cache/pypoetry/virtualenvs/microblogpub-chx-y1oE-py3.10 poetry run supervisord -c misc/supervisord.conf -n
+su -lPc "cd testing.microblog.pub && poetry run inv configuration-wizard" - plom
+su -lPc "cd testing.microblog.pub && poetry run inv migrate-db" - plom
+
+# Set up microblog.pub daemon service.
+venv_dir_path=$( su -lPc "cd testing.microblog.pub && poetry env info --path" - plom)
+venv_dir=$(basename ${venv_dir_path})
+sed -i "s/REPLACE_venv_dir_ECALPER/${venv_dir}/g" /etc/systemd/system/microblogpub.service
+systemctl enable microblogpub.service
+service microblogpub start
 
 # Prepare and start NGINX config.
 sed -i "s/REPLACE_fqdn_ECALPER/${domain}/g" /etc/nginx/sites-available/microblogpub.nginx
 ln -s /etc/nginx/sites-available/microblogpub.nginx /etc/nginx/sites-enabled/microblogpub.nginx
 service nginx restart
+
+# Setup regular DB pruning
+cp "${config_tree_prefix}/other_files/prune_microblog.sh" /home/plom/
+systemctl enable microblogpub_prune.timer
+systemctl start microblogpub_prune.timer