mirror of
https://gitlab.com/alemaire/image-specs.git
synced 2025-01-17 17:48:20 +00:00
10 lines
183 B
Bash
Executable File
10 lines
183 B
Bash
Executable File
#!/bin/sh
|
|
|
|
roottmp=$(lsblk -l -o MAJ:MIN,MOUNTPOINT | grep '/$')
|
|
rootpart=/dev/block/${roottmp% /}
|
|
rootdev=${rootpart%:*}:0
|
|
|
|
parted -s $rootdev resizepart 2 100%
|
|
|
|
resize2fs $rootpart
|