Browse Source

current

master
parent
commit
0e934a30fc
2 changed files with 3 additions and 2 deletions
  1. +1
    -0
      defaults/main.yml
  2. +2
    -2
      tasks/main.yml

+ 1
- 0
defaults/main.yml View File

@@ -2,3 +2,4 @@ grub_cmdline_linux:
grub_cmdline_linux_default: quiet grub_cmdline_linux_default: quiet
grub_disable_recovery: false grub_disable_recovery: false
grub_terminal: console grub_terminal: console
boot_devices: "{{ hard_disks | map(attribute='device') | list }}"

+ 2
- 2
tasks/main.yml View File

@@ -11,7 +11,8 @@
dest: "{{ root_target_directory }}/etc/default/grub" dest: "{{ root_target_directory }}/etc/default/grub"


- name: grub-install - name: grub-install
command: chroot {{ root_target_directory }} grub-install {{ boot_devices | join(" ") }}
command: chroot {{ root_target_directory }} grub-install {{ item }}
with_items: "{{ boot_devices }}"


- name: update-grub - name: update-grub
command: chroot {{ root_target_directory }} update-grub command: chroot {{ root_target_directory }} update-grub
@@ -19,7 +20,6 @@
- name: update initramfs - name: update initramfs
command: chroot {{ root_target_directory }} update-initramfs -u command: chroot {{ root_target_directory }} update-initramfs -u



- include_role: - include_role:
name: chroot_environment name: chroot_environment
vars: vars:


Loading…
Cancel
Save