|
root / base / usr / src / zyginit / services / filesystem / service.toml
service.toml TOML 22 lines 514 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
# filesystem — Mount all local filesystems from /etc/vfstab + ZFS

[service]
name = "filesystem"
description = "Local filesystem mounts and ZFS imports"
type = "oneshot"

[exec]
start = "/etc/zyginit/services/filesystem/start.sh"
stop = "/etc/zyginit/services/filesystem/stop.sh"

[runlevel]
# /var, /usr, etc. mounts are needed in any operating mode — without
# /var the recovery shell can't even read /var/adm/messages.
mode = "always"

[dependencies]
requires = ["root-fs", "devfs"]

[restart]
on = "never"