Clean up systemd files

Both server and merger should properly load on first-boot now.  Also
drop logging to syslog, since we have logging setup.

Change-Id: I59cc2ade3ce81736f70d4dd7f0bf49d1d2a4f933
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2015-12-12 12:15:19 -05:00
parent 1f4cc4fc9d
commit 8d66b8696f
2 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,6 @@
[Unit]
Description=Zuul Merger Service
After=syslog.target network.target
[Service]
Type=simple
@ -7,6 +8,7 @@ User=zuul
Group=zuul
EnvironmentFile=-/etc/sysconfig/zuul
ExecStart=/usr/bin/zuul-merger -d
ExecReload=/bin/kill -HUP $MAINPID
StandardOutput=syslog
StandardError=syslog
[Install]
WantedBy=multi-user.target

View File

@ -1,5 +1,6 @@
[Unit]
Description=Zuul Server Service
After=syslog.target network.target
[Service]
Type=simple
@ -7,6 +8,7 @@ User=zuul
Group=zuul
EnvironmentFile=-/etc/sysconfig/zuul
ExecStart=/usr/bin/zuul-server -d
ExecReload=/bin/kill -HUP $MAINPID
StandardOutput=syslog
StandardError=syslog
[Install]
WantedBy=multi-user.target