From 5e607525947f5c6082bb90f11418913aaf9979f4 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Wed, 1 Apr 2026 21:13:09 -0400 Subject: [PATCH] Update install instructions with Ruby/systemd --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index f46b17a..977aed1 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,12 @@ mkdir /var/www/malp/data chown apache:apache /var/www/malp/data ``` +### Install ruby + +``` +dnf install ruby +``` + ### If using SELinux (e.g. AlmaLinux) ``` @@ -77,3 +83,11 @@ openssl req -new -x509 -key anubis.key -out anubis.crt -days 3650 -sha384 ``` /var/www/malp/bin/setpasswd ``` + +### Install systemd units + +``` +cp /var/www/malp/systemd/* /usr/lib/systemd/system +systemctl enable --now malpd.socket +systemctl enable --now malpd.service +```