diff options
author | Qi.Chen@windriver.com <Qi.Chen@windriver.com> | 2020-10-16 15:36:04 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-10-16 09:21:54 -0700 |
commit | 5a5f7ec345c8621daa33ecb0b7072b78adcf6f70 (patch) | |
tree | 315a92cd511d56be650ef8d674892ab5e4db6c46 /meta-networking/recipes-daemons | |
parent | 27657cac27e55c5ed249d88b75f90d8e8aee3ba5 (diff) | |
download | meta-openembedded-5a5f7ec345c8621daa33ecb0b7072b78adcf6f70.tar.gz |
cyrus-sasl: use /run instead of /var/run for systemd service file
/var/run has been deprecated by systemd, so use /run instead,
as suggested by systemd.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-daemons')
-rw-r--r-- | meta-networking/recipes-daemons/cyrus-sasl/cyrus-sasl/saslauthd.service | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-daemons/cyrus-sasl/cyrus-sasl/saslauthd.service b/meta-networking/recipes-daemons/cyrus-sasl/cyrus-sasl/saslauthd.service index 96dbae378..e63592af6 100644 --- a/meta-networking/recipes-daemons/cyrus-sasl/cyrus-sasl/saslauthd.service +++ b/meta-networking/recipes-daemons/cyrus-sasl/cyrus-sasl/saslauthd.service | |||
@@ -4,7 +4,7 @@ After=syslog.target | |||
4 | 4 | ||
5 | [Service] | 5 | [Service] |
6 | Type=forking | 6 | Type=forking |
7 | PIDFile=@LOCALSTATEDIR@/run/saslauthd/saslauthd.pid | 7 | PIDFile=/run/saslauthd/saslauthd.pid |
8 | EnvironmentFile=@SYSCONFDIR@/default/saslauthd | 8 | EnvironmentFile=@SYSCONFDIR@/default/saslauthd |
9 | ExecStart=@SBINDIR@/saslauthd -m $SOCKETDIR -a $MECH $FLAGS | 9 | ExecStart=@SBINDIR@/saslauthd -m $SOCKETDIR -a $MECH $FLAGS |
10 | 10 | ||