From b9ecf9a3c6bcf31394610c12ffe58073c9f01851 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sun, 8 Oct 2023 03:12:52 +0400 Subject: [PATCH] In Makefile un/install target added an override for an Icecast service. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 0a15ff3..13cb27a 100755 --- a/Makefile +++ b/Makefile @@ -38,6 +38,7 @@ install: # install -Dm 0644 configs/radio.vars.liq ${DESTDIR}/etc/dwelling/radio.vars.liq install -Dm 0644 configs/ezstream.xml ${DESTDIR}/etc/dwelling/ezstream.xml install -Dm 0644 configs/logrotate ${DESTDIR}/etc/logrotate.d/${TARGET} + install -Dm 0644 configs/override.icecast.service ${DESTDIR}/etc/systemd/system/icecast.service.override.d/override.conf install -Dm 0644 init/radio.service ${DESTDIR}/${SYSDDIR}/${TARGET}.service # install -Dm 0644 init/liquidsoap.service ${DESTDIR}/${SYSDDIR}/${TARGET}-liquidsoap.service @@ -54,6 +55,7 @@ uninstall: # rm ${DESTDIR}/etc/dwelling/radio.liq rm ${DESTDIR}/etc/dwelling/ezstream.xml rm ${DESTDIR}/etc/logrotate.d/${TARGET} + rm ${DESTDIR}/etc/systemd/system/icecast.service.override.d/override.conf rm ${DESTDIR}${SYSDDIR}/${TARGET}.service # rm ${DESTDIR}${SYSDDIR}/${TARGET}-liquidsoap.service