From 2d5bedc1f18c246031f82d0e3ab3b634510a30bb Mon Sep 17 00:00:00 2001 From: James Denton Date: Wed, 1 Dec 2021 14:25:23 -0600 Subject: [PATCH] Fix libvirt service name This patch fixes an error encounter within the processmonitor. The libvirt service name has been changed from libvirt-bin (doesn't exist) to libvirtd. Tested on Ubuntu Server 20.04 (Focal). Change-Id: I6f909cb0dec22db6b3ab05d2158ac6e0601f9ad3 --- templates/process_list.yaml.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/process_list.yaml.j2 b/templates/process_list.yaml.j2 index 0ccc375..62dadad 100644 --- a/templates/process_list.yaml.j2 +++ b/templates/process_list.yaml.j2 @@ -11,12 +11,12 @@ # These definitions need to be set according to the environment to use. # Sample of definitions is shown below. - - # libvirt-bin + # libvirtd process_name: /usr/sbin/libvirtd - start_command: systemctl start libvirt-bin + start_command: systemctl start libvirtd pre_start_command: post_start_command: - restart_command: systemctl restart libvirt-bin + restart_command: systemctl restart libvirtd pre_restart_command: post_restart_command: run_as_root: True