ports/main/nnd-s6-services/rc/mount.run/up

27 lines
476 B
Plaintext

#!/bin/execlineb -P
define DEST /run
define CLEANDEST run
define FSTYPE tmpfs
s6-envdir -i /etc/s6/env/path
importas -i PATH PATH
s6-envdir -i /etc/s6/env/mount.${CLEANDEST}
importas -i OPTS OPTS
emptyenv
export PATH $PATH
fdclose 1
fdclose 2
# TODO: Handle tmpfs being potentially mounted ahead of service execution (initrd)
foreground {
foreground {
exec mkdir -p $DEST
} exec mount -t $FSTYPE -o $OPTS run $DEST
} if -nt {
importas status ? test $status -eq 1
}