diff options
author | Carlos Santos <casantos@datacom.com.br> | 2018-11-06 22:49:12 -0200 |
---|---|---|
committer | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2018-12-10 22:17:20 +0100 |
commit | ff349069b0fc6a08e4b52e439a8b54d60aa3279e (patch) | |
tree | 490c95c42cde93fea3b5361e8aead12d42aca6c2 /package/syslog-ng/syslog-ng.mk | |
parent | b3c76a435b16c5031a1519810f93972c42869ae0 (diff) | |
download | buildroot-ff349069b0fc6a08e4b52e439a8b54d60aa3279e.tar.gz buildroot-ff349069b0fc6a08e4b52e439a8b54d60aa3279e.zip |
syslog-ng: rewrite init script
- Rename it to S01syslog-ng to make every init script be called the same
as the executable it starts.
- Indent with tabs, not spaces.
- Do not kill syslog-ng in "reload". Send a SIGHUP signal, instructing
it to perform a re-initialization.
- Support a /etc/default/syslog-ng configuration file.
Signed-off-by: Carlos Santos <casantos@datacom.com.br>
Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Diffstat (limited to 'package/syslog-ng/syslog-ng.mk')
-rw-r--r-- | package/syslog-ng/syslog-ng.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/syslog-ng/syslog-ng.mk b/package/syslog-ng/syslog-ng.mk index 793fea0972..29e284a4bf 100644 --- a/package/syslog-ng/syslog-ng.mk +++ b/package/syslog-ng/syslog-ng.mk @@ -93,8 +93,8 @@ SYSLOG_NG_CONF_OPTS += --disable-systemd endif define SYSLOG_NG_INSTALL_INIT_SYSV - $(INSTALL) -m 0755 -D package/syslog-ng/S01logging \ - $(TARGET_DIR)/etc/init.d/S01logging + $(INSTALL) -m 0755 -D package/syslog-ng/S01syslog-ng \ + $(TARGET_DIR)/etc/init.d/S01syslog-ng endef # By default syslog-ng installs a number of sample configuration |