Call the right process_daemon function

This patch fixes an issue on process daemons that happened because
of the related function is called with a wrong name.

Change-Id: I4ee52fe91317d1a22bbd8c6f77e507dfae71c46b
This commit is contained in:
Francesco Pantano 2022-05-09 18:44:39 +02:00
parent 196dcf5d06
commit 3313a393bb
No known key found for this signature in database
GPG Key ID: 0458D4D1F41BD75C
1 changed files with 1 additions and 1 deletions

View File

@ -547,7 +547,7 @@ class OvercloudCephDeploy(command.Command):
"ceph daemon options file not found --daemons %s."
% os.path.abspath(parsed_args.daemons))
else:
daemon_opt = oooutils.process_daemons(
daemon_opt = oooutils.process_ceph_daemons(
os.path.abspath(parsed_args.daemons))
# merge the processed extra_vars for daemons
extra_vars = {**extra_vars, **daemon_opt}