ansible-install-server/roles/fai/templates/srv/fai/config/class/HW4F_DESKTOP.var.j2

37 lines
767 B
Django/Jinja

### CONFIGURE TIME
UTC=yes
TIMEZONE=Europe/Berlin
### INSTALL PARAMETERS
STOP_ON_ERROR=700
MAXPACKAGES=800
HOSTNAME="user-pc"
KEYMAP=de-latin1-nodeadkeys
ROOTPW='{{ fai_hw4f_profile_password
| password_hash("sha512", fai_hw4f_password_salt ) }}'
# START USER AND PASSWORD
username={{ fai_hw4f_profile_username }}
USERPW='{{ fai_hw4f_profile_password
| password_hash("sha512", fai_hw4f_password_salt ) }}'
SUPRESS_GNOME_INITIAL_SCREEN=1
FAI_ALLOW_UNSIGNED=0
APTPROXY=http://{{ server_name }}:3142
### CONFIGURE LOG UPLOAD
{% if fai_loguser is defined and
fai_loguser is none %}
### DISABLE LOG UPLOAD
LOGUSER=
{% elif fai_loguser is defined and
fai_loguser is not none %}
LOGUSER={{ fai_loguser }}
{% else %}
#LOGUSER=
{% endif %}