From b91c24998a65053851987c69b4044bb025302de2 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sun, 8 Jan 2023 17:02:43 +0400 Subject: [PATCH] SystemD service moved out to the root of init dir and renamed to systemd.service. --- Makefile | 2 +- init/{systemd/justcaptcha.service => systemd.service} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename init/{systemd/justcaptcha.service => systemd.service} (100%) diff --git a/Makefile b/Makefile index 97263b0..74fc47f 100755 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ install: install -Dm 0755 bin/${TARGET} ${DESTDIR}usr/bin/${TARGET} install -Dm 0644 LICENSE ${DESTDIR}usr/share/licenses/${PACKAGE_NAME}/LICENSE - install -Dm 0644 init/systemd/${PACKAGE_NAME}.service ${DESTDIR}${SYSDDIR}/${PACKAGE_NAME}.service + install -Dm 0644 init/systemd.service ${DESTDIR}${SYSDDIR}/${PACKAGE_NAME}.service uninstall: rm ${DESTDIR}usr/bin/${TARGET} diff --git a/init/systemd/justcaptcha.service b/init/systemd.service similarity index 100% rename from init/systemd/justcaptcha.service rename to init/systemd.service