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

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

# set 'r', otherwise less breaks UTF-8 chars without UTF-8 locale
export SYSTEMD_LESS="FrSXMK"

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