9 lines
272 B
Bash
9 lines
272 B
Bash
# setup basic XDG_RUNTIME_DIR for things like rootless containerd
|
|
if test -z "${XDG_RUNTIME_DIR}"; then
|
|
export XDG_RUNTIME_DIR=/tmp/$(id -u)-runtime-dir
|
|
if ! test -d "${XDG_RUNTIME_DIR}"; then
|
|
mkdir "${XDG_RUNTIME_DIR}"
|
|
chmod 0700 "${XDG_RUNTIME_DIR}"
|
|
fi
|
|
fi
|