Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/tvheadend/files/
Date: Sun, 10 May 2020 22:18:24
Message-Id: 1589149052.2b4d221c8a5c4aee7a1330beba243636767d6dfc.chewi@gentoo
1 commit: 2b4d221c8a5c4aee7a1330beba243636767d6dfc
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 10 22:17:32 2020 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Sun May 10 22:17:32 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b4d221c
7
8 media-tv/tvheadend: Fix bad quoting in systemd service file
9
10 Closes: https://bugs.gentoo.org/720720
11 Package-Manager: Portage-2.3.99, Repoman-2.3.22
12 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
13
14 media-tv/tvheadend/files/tvheadend.service | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/media-tv/tvheadend/files/tvheadend.service b/media-tv/tvheadend/files/tvheadend.service
18 index 6d1e27445b7..cd5c5e7f911 100644
19 --- a/media-tv/tvheadend/files/tvheadend.service
20 +++ b/media-tv/tvheadend/files/tvheadend.service
21 @@ -9,7 +9,7 @@ Group=video
22 RuntimeDirectory=tvheadend
23 PIDFile=/run/tvheadend/tvheadend.pid
24 EnvironmentFile=/etc/conf.d/tvheadend
25 -ExecStart=/usr/bin/tvheadend -p /run/tvheadend/tvheadend.pid -c "${TVHEADEND_CONFIG}" ${TVHEADEND_OPTIONS}
26 +ExecStart=/usr/bin/tvheadend -p /run/tvheadend/tvheadend.pid -c ${TVHEADEND_CONFIG} ${TVHEADEND_OPTIONS}
27 TimeoutStartSec=1m
28 TimeoutStopSec=20s
29 Restart=always