xhost-cookbooks/system

View on GitHub
templates/ubuntu/profile.erb

Summary

Maintainability
Test Coverage
# /etc/profile: system-wide .profile file for bash(1).

# This file is managed by Chef
# Do not edit this file by hand!

if [ -f /etc/sysprofile ]; then
  if [ `grep -x ^SYSDEBUG=1 /etc/sysprofile` ]; then
    if [ ! -d /var/tmp/sysprofile ]; then
        mkdir -m 1777 /var/tmp/sysprofile
        touch /var/tmp/sysprofile/$USER
        chmod 600 /var/tmp/sysprofile/$USER
    fi
    . /etc/sysprofile >> /var/tmp/sysprofile/$USER 2>&1
  else
    . /etc/sysprofile
  fi
fi

PATH=$PATH:<%= @profile[:path].join ':' %>

<%= @profile[:append_scripts].join "\n" %>