CentOS 6 の sbin

CentOS 6 では一般ユーザでも sbin が PATH に設定されるようになっているのですね。

CentOS 6.3

/etc/profile
 :
# Path manipulation
if [ "$EUID" = "0" ]; then
    pathmunge /sbin
    pathmunge /usr/sbin
    pathmunge /usr/local/sbin
else
    pathmunge /usr/local/sbin after
    pathmunge /usr/sbin after
    pathmunge /sbin after
fi
 :

CentOS 5.8

/etc/profile
 :
# Path manipulation
if [ "$EUID" = "0" ]; then
        pathmunge /sbin
        pathmunge /usr/sbin
        pathmunge /usr/local/sbin
fi
 :