mirror of
https://gitlab.com/alemaire/image-specs.git
synced 2025-01-11 02:03:30 +00:00
14 lines
194 B
Bash
Executable File
14 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
|
|
roottmp=$(lsblk -l -o MAJ:MIN,MOUNTPOINT | grep '/$')
|
|
rootpart=/dev/block/${roottmp% /}
|
|
rootdev=${rootpart%:*}:0
|
|
|
|
sfdisk -f $rootdev -N 2 <<EOF
|
|
,+
|
|
EOF
|
|
|
|
partprobe
|
|
|
|
resize2fs $rootpart
|