mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-11 01:00:25 +00:00
So that we can write to /var early, move filesystem formatting as early as possible. Adds a dummy fsck service, as we already do fsck in format script. Replaces #535 Signed-off-by: Justin Cormack <justin.cormack@docker.com>
13 lines
111 B
Plaintext
Executable File
13 lines
111 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
# do nothing as we do this in automount script
|
|
|
|
start()
|
|
{
|
|
return 0
|
|
}
|
|
|
|
stop()
|
|
{
|
|
return 0
|
|
}
|