16 lines
746 B
Plaintext
16 lines
746 B
Plaintext
# This file is related to the `Baguette` project (authd, dnsmanagerd…).
|
|
# It is a way to avoid the long and complex default configuration files provided
|
|
# by the system. Allowed operations can be known in a matter of seconds.
|
|
|
|
# Accept basically all available libraries.
|
|
@{BASE_LIBS}=/{,usr/,usr/local/}lib{,32,64}/*.so* /usr/lib/x86_64*/*.so* /etc/ld*
|
|
|
|
# Enable reading files from different places required by the libraries I use,
|
|
# which may be the Crystal standard library itself.
|
|
@{BASE_RO}=/dev/{,u}random /dev/pts/* /proc/** /etc/localtime /{etc,usr/share}/zoneinfo/**
|
|
@{BASE_RW}=/dev/{null,zero,full}
|
|
|
|
# Found in other profiles:
|
|
# Recent glibc uses /dev/full in preference to /dev/null for programs
|
|
# that don't have open fds at exec().
|