13 lines
152 B
Text
13 lines
152 B
Text
|
#!/sbin/openrc-run
|
||
|
|
||
|
command="/bin/mount"
|
||
|
command_args="/dev/disk/by-partlabel/EFS /efs/"
|
||
|
|
||
|
depend() {
|
||
|
after bootmisc
|
||
|
}
|
||
|
|
||
|
start_pre() {
|
||
|
mkdir -p /efs/
|
||
|
}
|