Browse Source

Fix usage of noop (instead of none) scheduler for virtual disks on Xen domUs

Emmanuel Bouthenot 4 years ago
parent
commit
466693a734
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/common/templates/kernel/sysfs.d/10-disks.conf.j2

+ 1 - 1
roles/common/templates/kernel/sysfs.d/10-disks.conf.j2

@@ -3,7 +3,7 @@
 #
 {% if ansible_virtualization_type is defined and ansible_virtualization_type == 'xen' and ansible_virtualization_role == 'guest' %}
 {% for disk in ansible_devices %}
-block/{{ disk }}/queue/scheduler = noop
+block/{{ disk }}/queue/scheduler = none
 {% endfor %}
 {% endif %}
 {% if sysfs_disk_settings %}