ansible/resize.yml: fix unmounting /mnt volumes
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
1564924b32
commit
c854752503
|
@ -16,10 +16,14 @@
|
|||
command: umount /docker
|
||||
- name: umount /data
|
||||
command: umount /data
|
||||
- name: umount {{ device_path.stdout }}
|
||||
command: umount {{ device_path.stdout }}
|
||||
- name: e2fsck {{ device_path.stdout }}
|
||||
command: e2fsck -pf {{ device_path.stdout }}
|
||||
- name: resize2fs {{ device_path.stdout }}
|
||||
command: resize2fs {{ device_path.stdout }}
|
||||
- name: mount {{ device_path.stdout }}
|
||||
command: mount {{ device_path.stdout }}
|
||||
- name: mount /data
|
||||
command: mount /data
|
||||
- name: mount /docker
|
||||
|
|
Loading…
Reference in New Issue