the file /etc/skel/.bashrc contains the line "eval `dircolors -b /etc/DIR_COLORS`", but in no place sources the file "$HOME/.dir_colors", as described in the file /etc/DIR_COLORS. I don't belive "$HOME/.dir_colors" is sourced elsewhere, either. This isn't terribly critical, it just disregards the promised behavior at the top of /etc/DIR_COLORS: "# You can copy this file to .dir_colors in your $HOME directory to override # the system defaults." Reproducible: Always Steps to Reproduce: Expected Results: I believe the line in /etc/skel/.bashrc should read: if [ -e "$HOME/.dir_colors" ] then eval `dircolors -b $HOME/.dir_colors` else eval `dircolors -b /etc/DIR_COLORS` fi rather than what it currently reads: eval `dircolors -b /etc/DIR_COLORS`
Fixed in rc-scripts cvs, thanks
in baselayout-1.11.2