From ad4aae50edda057e1fcdc1849a28342b9c6c0d44 Mon Sep 17 00:00:00 2001 From: sceox Date: Sat, 16 Sep 2023 14:12:58 -0700 Subject: [PATCH] ircbot: Follow standard permissions for rc service file --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index f19d933..70d6a86 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,7 @@ SYSTEMD_UNIT_DIR = /lib/systemd/system rc: install @echo installing ircbot to /etc/rc.d @cp -f services/rc/ircbot /etc/rc.d + @chmod 555 /etc/rc.d/ircbot @echo enabling ircbot @rcctl enable ircbot @echo not starting ircbot -- configure it then run `rcctl start ircbot` as root