30 lines
715 B
Bash
30 lines
715 B
Bash
# Domaine LEGOS
|
|
export REALM="legos.obs-mip.fr"
|
|
|
|
# Proxy LEGOS
|
|
export PROXY_APT="acng.$REALM"
|
|
export PROXY_APT_PORT="3142"
|
|
export PROXY_SRV="proxy.$REALM"
|
|
export PROXY_SRV_PORT="3128"
|
|
|
|
# Langues supportés et langue du systême
|
|
export LOCALESET="en_US.UTF-8 fr_FR.UTF-8"
|
|
export SYSLOCALE="fr_FR.UTF-8"
|
|
|
|
# Shell par défaut, pour les nouveaux utilisateurs
|
|
export DEFAULT_SHELL="/bin/bash"
|
|
|
|
# Configuration du disque de calcul : zfs, ext4 et xfs accepté
|
|
export CALCTYPE="zfs"
|
|
export CALCMOUNTPOINT="/calcul/$HOSTNAME"
|
|
|
|
# Liste des serveurs NTP
|
|
export NTP_SERVERS="ntp1.$REALM ntp2.$REALM"
|
|
|
|
# Relay mail
|
|
export MAIL_RELAY="smpt.$REALM"
|
|
|
|
# Authentification
|
|
export BASE_DC="dc=legos,dc=obs-mip,dc=fr"
|
|
# To be continued
|