Summary
ログインシェルを homebrew の zsh にしていたつもりだったが、ZSH_VERSION=5.0.2 となっていて、Macに最初から入っているzshを使っているようだった。
/etc/shells に /usr/local/bin/zsh を追加
# List of acceptable shells for chpass(1).
# Ftpd will not allow users to connect who are not using
# one of these shells.
/bin/bash
/bin/csh
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh
/usr/local/bin/zsh
chpassを実行
% chpass -s /usr/local/bin/zsh
Changing shell for username.
Password for username:
Reference
Macとかの雑記帳 - 2011-12-30 - MacのログインシェルをHomebrew等で入れたzshやbashに変更する方法http://tukaikta.blog135.fc2.com/blog-entry-195.html