diff options
| author | Andrey Smirnov <andrew.smirnov@gmail.com> | 2017-08-23 16:44:14 -0700 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-08-24 23:12:40 +0200 |
| commit | 3a41c96a25a267db77455a668dd4c673a2a6fc39 (patch) | |
| tree | 42aaf38dae408f1a4571c5c03b22fe6303f7f8c6 /package/rpcbind | |
| parent | f538d3de826974f5d8233d4a9d4a4015d4936bf2 (diff) | |
| download | buildroot-3a41c96a25a267db77455a668dd4c673a2a6fc39.tar.gz buildroot-3a41c96a25a267db77455a668dd4c673a2a6fc39.zip | |
package/rpcbind: Do not mark .service and .socket files executable
Do not mark .service and .socket files executable, otherwise systemd
will give us a warning about it.
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/rpcbind')
| -rw-r--r-- | package/rpcbind/rpcbind.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/rpcbind/rpcbind.mk b/package/rpcbind/rpcbind.mk index cf2e81dbbf..5c216afc93 100644 --- a/package/rpcbind/rpcbind.mk +++ b/package/rpcbind/rpcbind.mk @@ -22,9 +22,9 @@ RPCBIND_CONF_OPTS += --with-systemdsystemunitdir=no endif define RPCBIND_INSTALL_INIT_SYSTEMD - $(INSTALL) -m 0755 -D package/rpcbind/rpcbind.service \ + $(INSTALL) -m 0644 -D package/rpcbind/rpcbind.service \ $(TARGET_DIR)/usr/lib/systemd/system/rpcbind.service - $(INSTALL) -m 0755 -D package/rpcbind/rpcbind.socket \ + $(INSTALL) -m 0644 -D package/rpcbind/rpcbind.socket \ $(TARGET_DIR)/usr/lib/systemd/system/rpcbind.socket mkdir -p $(TARGET_DIR)/etc/systemd/system/sockets.target.wants ln -fs ../../../../usr/lib/systemd/system/rpcbind.socket \ |

