18 lines
437 B
Plaintext
18 lines
437 B
Plaintext
|
#jinja2: lstrip_blocks: True
|
||
|
{{ ansible_managed | comment }}
|
||
|
# Source global definitions
|
||
|
if [ -f {{ __users_bash_system_bashrc }} ]; then
|
||
|
. {{ __users_bash_system_bashrc }}
|
||
|
fi
|
||
|
|
||
|
{% if ansible_os_family | lower == "debian" %}
|
||
|
if [ -f /etc/profile ]; then
|
||
|
. /etc/profile
|
||
|
fi
|
||
|
|
||
|
{% endif %}
|
||
|
# Uncomment the following line if you don't like systemctl's auto-paging feature:
|
||
|
# export SYSTEMD_PAGER=
|
||
|
|
||
|
# User specific aliases and functions
|