From 4d3c185261bc35f08bc58af7b8e88bfe854c2194 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 25 Aug 2017 12:02:00 -0400 Subject: [PATCH] Fix user and path to binaries in systemd scripts I'm not exactly sure how but the user was nova and the paths were to /usr/sbin and not /usr/bin. The RDO package is going to use these rather than carrying local copies so it is important that they be correct. Change-Id: I1222edc55c0571b6fa3512a2d9c9ee107ebf4434 --- files/novajoin-notify.service | 4 ++-- files/novajoin-server.service | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/files/novajoin-notify.service b/files/novajoin-notify.service index 0493302..5bfa9b0 100644 --- a/files/novajoin-notify.service +++ b/files/novajoin-notify.service @@ -5,8 +5,8 @@ After=syslog.target network.target [Service] TimeoutStartSec=0 Restart=always -User=nova -ExecStart=/usr/sbin/novajoin-notify +User=novajoin +ExecStart=/usr/bin/novajoin-notify [Install] WantedBy=multi-user.target diff --git a/files/novajoin-server.service b/files/novajoin-server.service index 60f0205..3b24a8f 100644 --- a/files/novajoin-server.service +++ b/files/novajoin-server.service @@ -7,8 +7,8 @@ Type=simple NotifyAccess=all TimeoutStartSec=0 Restart=always -User=nova -ExecStart=/usr/sbin/novajoin-server +User=novajoin +ExecStart=/usr/bin/novajoin-server [Install] WantedBy=multi-user.target