From ed5508cb9a78d0f837ffc0a8cf9643c97cb04c3b Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Tue, 24 May 2022 23:42:39 +0400 Subject: [PATCH] Added logrotate file un/install to Makefile. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 336ba17..8a9e4e1 100755 --- a/Makefile +++ b/Makefile @@ -21,12 +21,14 @@ install: install -Dm 0755 bin/${TARGET} ${DESTDIR}usr/bin/${TARGET} install -Dm 0644 configs/config.yaml ${DESTDIR}etc/dwelling/radio.yaml install -Dm 0644 LICENSE ${DESTDIR}usr/share/licenses/${TARGET}/LICENSE + install -Dm 0644 configs/logrotate ${DESTDIR}etc/logrotate.d/${TARGET} install -Dm 0644 init/systemd/${TARGET}.service ${DESTDIR}${SYSDDIR}/${TARGET}.service uninstall: rm ${DESTDIR}usr/bin/${TARGET} rm ${DESTDIR}usr/share/licenses/${TARGET}/LICENSE + rm ${DESTDIR}etc/logrotate.d/${TARGET} rm ${DESTDIR}${SYSDDIR}/${TARGET}.service