mirror of
https://github.com/KenjiBrown/without-systemd.git
synced 2026-04-07 10:30:07 -04:00
19 lines
309 B
Plaintext
19 lines
309 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 2023 Gentoo Authors
|
|
# Released under MIT license.
|
|
|
|
description="Create Volatile Files and Directories"
|
|
|
|
depend()
|
|
{
|
|
provide tmpfiles-setup tmpfiles.setup
|
|
need localmount
|
|
}
|
|
|
|
start()
|
|
{
|
|
ebegin "${description}"
|
|
tmpfilesd --create --remove --boot --exclude-prefix=/dev
|
|
eend $?
|
|
}
|