diff --git a/ansible/roles/multipathd/tasks/config.yml b/ansible/roles/multipathd/tasks/config.yml
index 13bfa6c07d15620156748b45682fca1f718dc65c..57567133c533b897f7ee501de97fb5e5a25801e7 100644
--- a/ansible/roles/multipathd/tasks/config.yml
+++ b/ansible/roles/multipathd/tasks/config.yml
@@ -7,7 +7,7 @@
     group: "{{ config_owner_group }}"
     mode: "0770"
   become: true
-  when: inventory_hostname in groups['compute']
+  when: inventory_hostname in groups['multipathd']
   with_items:
     - "multipathd"
 
@@ -17,7 +17,7 @@
     dest: "{{ node_config_directory }}/{{ item }}/config.json"
     mode: "0660"
   become: true
-  when: inventory_hostname in groups['compute']
+  when: inventory_hostname in groups['multipathd']
   with_items:
     - "multipathd"
 
diff --git a/ansible/roles/multipathd/tasks/start.yml b/ansible/roles/multipathd/tasks/start.yml
index 2bf69eab2d41abc48dec6148bd7c082febf13672..c62dd107830d76efa02c681c4b19f8ea4d903996 100644
--- a/ansible/roles/multipathd/tasks/start.yml
+++ b/ansible/roles/multipathd/tasks/start.yml
@@ -18,4 +18,4 @@
       - "/sys/kernel/config:/configfs"
       - "cinder:/var/lib/cinder"
       - "iscsi_info:/etc/iscsi"
-  when: inventory_hostname in groups['compute']
+  when: inventory_hostname in groups['multipathd']