mirror of
https://github.com/ps5-linux/ps5-linux-image.git
synced 2026-07-15 21:42:27 +00:00
14 lines
196 B
Plaintext
14 lines
196 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
description="Grow root filesystem to fill disk"
|
|
|
|
depend() {
|
|
need localmount
|
|
}
|
|
|
|
start() {
|
|
ebegin "Growing root filesystem"
|
|
/usr/local/sbin/grow-rootfs
|
|
eend $?
|
|
}
|