[oe-commits] [meta-openembedded] 03/09: freeradius: fix PIDFile path in radiusd.service file

git at git.openembedded.org git at git.openembedded.org
Mon Oct 21 11:31:03 UTC 2019


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit 4e9546d1a43f2024c4d1b606077c117eaf93024e
Author: Trevor Gamblin <trevor.gamblin at windriver.com>
AuthorDate: Fri Oct 18 08:19:45 2019 -0400

    freeradius: fix PIDFile path in radiusd.service file
    
    radiusd.service references a legacy path for its PIDFile, which
    results in a warning at boot:
    
    systemd[1]: /lib/systemd/system/radiusd.service:7: PIDFile= references a path
    below legacy directory /var/run/, updating /var/run/radiusd/radiusd.pid →
    /run/radiusd/radiusd.pid; please update the unit file accordingly.
    
    Modify the recipe's radiusd.service file to use the correct path.
    
    Signed-off-by: Trevor Gamblin <trevor.gamblin at windriver.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-networking/recipes-connectivity/freeradius/files/radiusd.service | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-networking/recipes-connectivity/freeradius/files/radiusd.service b/meta-networking/recipes-connectivity/freeradius/files/radiusd.service
index 8dae0df..2d76648 100644
--- a/meta-networking/recipes-connectivity/freeradius/files/radiusd.service
+++ b/meta-networking/recipes-connectivity/freeradius/files/radiusd.service
@@ -4,8 +4,8 @@ After=syslog.target network.target
 
 [Service]
 Type=forking
-PIDFile=@STATEDIR@/run/radiusd/radiusd.pid
-ExecStartPre=- at BASE_BINDIR@/chown -R radiusd.radiusd @STATEDIR@/run/radiusd
+PIDFile=/run/radiusd/radiusd.pid
+ExecStartPre=- at BASE_BINDIR@/chown -R radiusd.radiusd /run/radiusd
 ExecStartPre=@SBINDIR@/radiusd -C
 ExecStart=@SBINDIR@/radiusd -d @SYSCONFDIR@/raddb
 ExecReload=@SBINDIR@/radiusd -C

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list