소스 검색

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

Emmanuel Bouthenot 5 년 전
부모
커밋
466693a734
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 %}