|
root / services / examples / root-fs.toml
root-fs.toml TOML 20 lines 494 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
# Root Filesystem
#
# Remounts the root filesystem read-write. The kernel initially mounts
# root read-only; this service transitions it to read-write so that
# other services can write to /etc, /var, etc.
#
# This is the earliest service in the boot chain. No other service
# should be listed as a dependency of root-fs.

[service]
name = "root-fs"
description = "Root Filesystem (read-write remount)"
type = "oneshot"

[exec]
start = "/usr/sbin/mount -o remount,rw /"

[restart]
on = "never"