13 lines
159 B
Bash
Executable File
13 lines
159 B
Bash
Executable File
#!/bin/ash
|
|
|
|
if [[ ! $(id -u) = 0 ]]; then
|
|
echo "Please run as root!"
|
|
exit 1
|
|
fi
|
|
|
|
apk add --no-cache cfdisk e2fsprogs-extra
|
|
|
|
cfdisk
|
|
|
|
resize2fs /dev/sda3
|