From aeb6f87278246ae881436d62fd1eace89f622e34 Mon Sep 17 00:00:00 2001 From: Quentin Bourgeois Date: Sat, 29 Sep 2018 10:04:05 +0000 Subject: [PATCH] Its better to remove the default executable bit put by install when no -m is provided and leave the systemd service files only readable. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3e8c4eb..1058ffd 100644 --- a/Makefile +++ b/Makefile @@ -44,4 +44,4 @@ install-exclude: # target: install-systemd - Install systemd timer and service files install-systemd: install -d $(DEST_SYSTEMD) - install $(SRCS_SYSTEMD) $(DEST_SYSTEMD) + install -m 0644 $(SRCS_SYSTEMD) $(DEST_SYSTEMD)