mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-10 08:30:39 +02:00
system: Source scripts from the /etc/profile.d directory.
This is useful since our /etc/profile file is otherwise not easily extendable. * gnu/system.scm (operating-system-etc-service): Source all '.sh' ending files found under the /etc/profile.d directory. Change-Id: Ia6d777195241f69219f00fbd5975e3e6b7c265fb
This commit is contained in:
parent
c669724138
commit
306bd80481
1 changed files with 11 additions and 0 deletions
|
@ -1131,6 +1131,17 @@ export DICPATH=\"$HOME/.guix-profile/share/hunspell:/run/current-system/profile/
|
||||||
# Allow GStreamer-based applications to find plugins.
|
# Allow GStreamer-based applications to find plugins.
|
||||||
export GST_PLUGIN_PATH=\"$HOME/.guix-profile/lib/gstreamer-1.0\"
|
export GST_PLUGIN_PATH=\"$HOME/.guix-profile/lib/gstreamer-1.0\"
|
||||||
|
|
||||||
|
for i in /etc/profile.d/*.sh; do
|
||||||
|
if [ -r \"$i\" ]; then
|
||||||
|
if [ \"${-#*i}\" != \"$-\" ]; then
|
||||||
|
. \"$i\"
|
||||||
|
else
|
||||||
|
. \"$i\" >/dev/null
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
unset i
|
||||||
|
|
||||||
if [ -n \"$BASH_VERSION\" -a -f /etc/bashrc ]
|
if [ -n \"$BASH_VERSION\" -a -f /etc/bashrc ]
|
||||||
then
|
then
|
||||||
# Load Bash-specific initialization code.
|
# Load Bash-specific initialization code.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue