Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v1 1/1] package/rsyslog: update to fix service permissions
@ 2022-05-11 14:22 Jared Bents
  0 siblings, 0 replies; 4+ messages in thread
From: Jared Bents @ 2022-05-11 14:22 UTC (permalink / raw)
  To: buildroot; +Cc: Jared Bents

Update to fix the permissions being set when installing the
rsyslog service. The service should be installed with 644
permissions and not 755 permissions.

Signed-off-by: Jared Bents <jared.bents@rockwellcollins.com>
---
 package/rsyslog/rsyslog.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/rsyslog/rsyslog.mk b/package/rsyslog/rsyslog.mk
index afd1a5557e..7cd75b19b6 100644
--- a/package/rsyslog/rsyslog.mk
+++ b/package/rsyslog/rsyslog.mk
@@ -121,7 +121,7 @@ RSYSLOG_CONF_OPTS += \
 endif
 
 define RSYSLOG_INSTALL_INIT_SYSTEMD
-	$(INSTALL) -m 0755 -D package/rsyslog/rsyslog.service \
+	$(INSTALL) -m 0644 -D package/rsyslog/rsyslog.service \
 		$(TARGET_DIR)/usr/lib/systemd/system/rsyslog.service
 endef
 
-- 
2.17.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH v1 1/1] package/rsyslog: update to fix service permissions
@ 2022-05-11 14:33 Jared Bents
  2022-07-26 21:33 ` Thomas Petazzoni via buildroot
  2022-08-29  6:56 ` Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Jared Bents @ 2022-05-11 14:33 UTC (permalink / raw)
  To: buildroot; +Cc: Jared Bents

Update to fix the permissions being set when installing the
rsyslog service. The service should be installed with 644
permissions and not 755 permissions.

Signed-off-by: Jared Bents <jared.bents@rockwellcollins.com>
---
 package/rsyslog/rsyslog.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/rsyslog/rsyslog.mk b/package/rsyslog/rsyslog.mk
index afd1a5557e..7cd75b19b6 100644
--- a/package/rsyslog/rsyslog.mk
+++ b/package/rsyslog/rsyslog.mk
@@ -121,7 +121,7 @@ RSYSLOG_CONF_OPTS += \
 endif
 
 define RSYSLOG_INSTALL_INIT_SYSTEMD
-	$(INSTALL) -m 0755 -D package/rsyslog/rsyslog.service \
+	$(INSTALL) -m 0644 -D package/rsyslog/rsyslog.service \
 		$(TARGET_DIR)/usr/lib/systemd/system/rsyslog.service
 endef
 
-- 
2.17.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH v1 1/1] package/rsyslog: update to fix service permissions
  2022-05-11 14:33 [Buildroot] [PATCH v1 1/1] package/rsyslog: update to fix service permissions Jared Bents
@ 2022-07-26 21:33 ` Thomas Petazzoni via buildroot
  2022-08-29  6:56 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-07-26 21:33 UTC (permalink / raw)
  To: Jared Bents; +Cc: buildroot

On Wed, 11 May 2022 09:33:16 -0500
Jared Bents <jared.bents@rockwellcollins.com> wrote:

> Update to fix the permissions being set when installing the
> rsyslog service. The service should be installed with 644
> permissions and not 755 permissions.
> 
> Signed-off-by: Jared Bents <jared.bents@rockwellcollins.com>
> ---
>  package/rsyslog/rsyslog.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH v1 1/1] package/rsyslog: update to fix service permissions
  2022-05-11 14:33 [Buildroot] [PATCH v1 1/1] package/rsyslog: update to fix service permissions Jared Bents
  2022-07-26 21:33 ` Thomas Petazzoni via buildroot
@ 2022-08-29  6:56 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2022-08-29  6:56 UTC (permalink / raw)
  To: Jared Bents; +Cc: buildroot

>>>>> "Jared" == Jared Bents <jared.bents@rockwellcollins.com> writes:

 > Update to fix the permissions being set when installing the
 > rsyslog service. The service should be installed with 644
 > permissions and not 755 permissions.

 > Signed-off-by: Jared Bents <jared.bents@rockwellcollins.com>

Committed to 2022.05.x and 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-08-29  6:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-11 14:33 [Buildroot] [PATCH v1 1/1] package/rsyslog: update to fix service permissions Jared Bents
2022-07-26 21:33 ` Thomas Petazzoni via buildroot
2022-08-29  6:56 ` Peter Korsgaard
  -- strict thread matches above, loose matches on Subject: below --
2022-05-11 14:22 Jared Bents

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox