summaryrefslogtreecommitdiffstats
path: root/projectroot/etc/profile.d/systemd.sh
blob: 1212a2d0303462c0830e17d7a14ca21a56d136cc (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

if [ -r /etc/locale.conf ]; then
  . /etc/locale.conf
  export LANG
fi

# make sure TERM is always defined
if [ -z "${TERM}" ]; then
  export TERM="linux"
fi