Files

17 lines
347 B
Bash
Raw Permalink Normal View History

2019-12-16 19:57:20 +00:00
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
# read config files
for config in /etc/profile.d/*; do
2024-07-06 11:48:56 +02:00
if [ -f "$config" ]; then
2019-12-16 19:57:20 +00:00
. $config
fi
done
# generate system-wide environment file
2026-03-18 17:32:41 -03:00
cat <<EOF >/run/archr/environment
2019-12-16 19:57:20 +00:00
PATH=${PATH}
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}
EOF