From 3ad255b1dc80e43a059a0f88e457ca193644b32b Mon Sep 17 00:00:00 2001 From: Mo8it Date: Mon, 30 May 2022 17:32:21 +0200 Subject: [PATCH] Remove asciidoctor from server --- README.adoc | 2 -- advlabdb/scripts/maintain/user_update.py | 3 --- advlabdb/scripts/setup/logged_server_setup.py | 2 +- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/README.adoc b/README.adoc index dc2d9f0..7ac4959 100644 --- a/README.adoc +++ b/README.adoc @@ -78,8 +78,6 @@ NOTE: Obviously, the email address is fake. == ToDo * Deactivate assistants account after a while if not assigned to experiments -* Statistics + semester review with alerts -* Documentation with Asciidoctor * Backups * Logging * Email integration + assistant reminder? diff --git a/advlabdb/scripts/maintain/user_update.py b/advlabdb/scripts/maintain/user_update.py index 8a091dc..076d786 100644 --- a/advlabdb/scripts/maintain/user_update.py +++ b/advlabdb/scripts/maintain/user_update.py @@ -19,9 +19,6 @@ def main(): box("Pull updates from the git repository") run("git pull origin main", cwd=REPO_DIR) - box("Update user docs") - # TODO: Update docs - box("Install latest Poetry packages") poetry_update() diff --git a/advlabdb/scripts/setup/logged_server_setup.py b/advlabdb/scripts/setup/logged_server_setup.py index 2b45181..0957cef 100644 --- a/advlabdb/scripts/setup/logged_server_setup.py +++ b/advlabdb/scripts/setup/logged_server_setup.py @@ -20,7 +20,7 @@ def main(): run("sudo apt autoremove") step("Install needed system packages") - run("sudo apt install python3 python3-pip python3-venv ufw nginx systemd asciidoctor -y") + run("sudo apt install python3 python3-pip python3-venv ufw nginx systemd -y") step("Install optional system packages") run("sudo apt install htop rsync")