Remove remaining hard-coded OS user/group

This replaces one remaining hard-coded user which was left by
the previous attempt[1] to remove individual hard-codes.

[1] 4828d650b3

Change-Id: Iba7e9af291621deeca7651ef9f67ddce453180af
This commit is contained in:
Takashi Kajinami 2022-08-17 14:18:38 +09:00
parent 021f77ca19
commit d3f0a4852a
1 changed files with 2 additions and 1 deletions

View File

@ -13,11 +13,12 @@ class cloudkitty::storage(
){
include cloudkitty::deps
include cloudkitty::params
exec { 'cloudkitty-storage-init':
command => "cloudkitty-storage-init ${extra_params}",
path => '/usr/bin',
user => 'cloudkitty',
user => $::cloudkitty::params::user,
refreshonly => true,
try_sleep => 5,
tries => 10,