Allow user/group to be overriden in unit section

The unit section allows for user/group to be set via global variable
however in some cases a specific unit may need to have a different
user/group setup. This change allows for the users to be defined in the
service definition and falls back to the global default.

Change-Id: I69540efd2c993912b042a1b6b6a1dc279542f325
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
Kevin Carter 2018-11-26 11:38:13 -06:00 committed by Jonathan Rosser
parent 2218eb54d9
commit f79988efca
1 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@ Documentation={{ item }}
[Service]
{% set service_type = item.service_type | default(systemd_default_service_type) %}
Type={{ service_type }}
User={{ systemd_user_name }}
Group={{ systemd_group_name }}
User={{ item.systemd_user_name | default(systemd_user_name) }}
Group={{ item.systemd_group_name | default(systemd_group_name) }}
{% set _execstarts = item.execstarts %}
{% if _execstarts is string %}