wip
This commit is contained in:
parent
ef09d172a9
commit
3f4bd3b8cc
1 changed files with 4 additions and 4 deletions
|
@ -23,12 +23,12 @@
|
|||
- name: Get ROOT_UUID
|
||||
shell: |
|
||||
lsblk -o LABEL,UUID | grep ROOT | awk '{print $2}'
|
||||
register: ROOT_UUID
|
||||
register: root_uuid
|
||||
run_once: true
|
||||
- name: Get ESP_UUID
|
||||
shell: |
|
||||
lsblk -o LABEL,UUID | grep EFI | awk '{print $2}'
|
||||
register: ESP_UUID
|
||||
register: esp_uuid
|
||||
run_once: true
|
||||
- name: Deploy fstab
|
||||
template:
|
||||
|
@ -38,7 +38,7 @@
|
|||
group: root
|
||||
mode: '0644'
|
||||
vars:
|
||||
ROOT_UUID: '{{ ROOT_UUID.stdout }}'
|
||||
ESP_UUID: '{{ ESP_UUID.stdout }}'
|
||||
ROOT_UUID: '{{ root_uuid.stdout }}'
|
||||
ESP_UUID: '{{ esp_uuid.stdout }}'
|
||||
TIMESTAMP: '{{ start_timestamp }}'
|
||||
TMPFS_SIZE: '{{ tmpfs_size }}'
|
||||
|
|
Loading…
Reference in a new issue