summaryrefslogtreecommitdiff
path: root/roles/install-grub-wrapper/tasks/main.yml
blob: 9a531f9c8d255a5670d8b841cd83a56bf30e2789 (plain)
1
2
3
4
5
6
7
8
9
- name: Select GRUB for installer for VyOS <=1.3
  include_role:
    name: install-grub
  when: vyos_version is regex("^1\.[2-3].*$")

- name: Select GRUB for installer for VyOS >=1.4
  include_role:
    name: install-grub-v2
  when: vyos_version is regex("^1\.[4-9].*$")