summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-daemons/postfix/files/postfix.service
diff options
context:
space:
mode:
authorBian Naimeng <biannm@cn.fujitsu.com>2015-02-16 15:52:35 +0800
committerJoe MacDonald <joe_macdonald@mentor.com>2015-02-23 13:53:32 -0500
commit710459da208c89b44291b0fced8c288a14ad99b3 (patch)
treed0706c6ad82a03df2c784efb2f4779d6ca7c7a6c /meta-networking/recipes-daemons/postfix/files/postfix.service
parent9b67eabcec04c2927f61b7a256505d8813c763f8 (diff)
downloadmeta-openembedded-710459da208c89b44291b0fced8c288a14ad99b3.tar.gz
postfix: don't hard-code PATH in service file
Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-daemons/postfix/files/postfix.service')
-rw-r--r--meta-networking/recipes-daemons/postfix/files/postfix.service10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta-networking/recipes-daemons/postfix/files/postfix.service b/meta-networking/recipes-daemons/postfix/files/postfix.service
index c781038d8..02ea640b2 100644
--- a/meta-networking/recipes-daemons/postfix/files/postfix.service
+++ b/meta-networking/recipes-daemons/postfix/files/postfix.service
@@ -5,11 +5,11 @@ Conflicts=sendmail.service exim.service
5 5
6[Service] 6[Service]
7Type=forking 7Type=forking
8PIDFile=/var/spool/postfix/pid/master.pid 8PIDFile=@LOCALSTATEDIR@/spool/postfix/pid/master.pid
9ExecStartPre=-/usr/libexec/postfix/aliasesdb 9ExecStartPre=-@LIBEXECDIR@/aliasesdb
10ExecStart=/usr/sbin/postfix start 10ExecStart=@SBINDIR@/postfix start
11ExecReload=/usr/sbin/postfix reload 11ExecReload=@SBINDIR@/postfix reload
12ExecStop=/usr/sbin/postfix stop 12ExecStop=@SBINDIR@/postfix stop
13 13
14[Install] 14[Install]
15WantedBy=multi-user.target 15WantedBy=multi-user.target