瀏覽代碼

fix for issue #134 - compatibly issues in grub configuration with RedHat os_family systems

pull/135/head
Nick Metz 7 年之前
父節點
當前提交
dbf0727472
共有 1 個檔案被更改,包括 14 行新增0 行删除
  1. +14
    -0
      linux/system/grub.sls

+ 14
- 0
linux/system/grub.sls 查看文件

@@ -6,8 +6,22 @@ grub_d_directory:
- mode: 755
- makedirs: True

{%- if grains['os_family'] == 'RedHat' %}
/etc/default/grub:
file.append:
- text:
- for i in $(ls /etc/default/grub.d);do source /etc/default/grub.d/$i ;done

grub_update:
cmd.wait:
- name: grub2-mkconfig -o /boot/grub2/grub.cfg

{%- else %}

{%- if grains.get('virtual_subtype', None) not in ['Docker', 'LXC'] %}
grub_update:
cmd.wait:
- name: update-grub
{%- endif %}

{%- endif %}

Loading…
取消
儲存