diff -Nru bash-4.3/debian/changelog bash-4.3/debian/changelog --- bash-4.3/debian/changelog 2014-10-07 14:24:29.000000000 +0000 +++ bash-4.3/debian/changelog 2014-10-29 12:09:55.000000000 +0000 @@ -1,3 +1,10 @@ +bash (4.3-11ubuntu2) vivid; urgency=medium + + * debian/etc.bash.bashrc: print a hint how to get root access if user + is in sudo group (lp: #1358827) + + -- Andrey Bondarenko Wed, 29 Oct 2014 08:08:56 -0400 + bash (4.3-11ubuntu1) utopic; urgency=medium * Merge with Debian; remaining changes: diff -Nru bash-4.3/debian/etc.bash.bashrc bash-4.3/debian/etc.bash.bashrc --- bash-4.3/debian/etc.bash.bashrc 2014-09-30 18:50:05.000000000 +0000 +++ bash-4.3/debian/etc.bash.bashrc 2014-10-29 12:08:52.000000000 +0000 @@ -39,7 +39,7 @@ # sudo hint if [ ! -e "$HOME/.sudo_as_admin_successful" ] && [ ! -e "$HOME/.hushlogin" ] ; then - case " $(groups) " in *\ admin\ *) + case " $(groups) " in *\ admin\ *|*\ sudo\ *) if [ -x /usr/bin/sudo ]; then cat <<-EOF To run a command as administrator (user "root"), use "sudo ".