ソースを参照

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 %}

読み込み中…
キャンセル
保存