#!/bin/sh

grep /zsh /etc/shells > /dev/null || {
        echo "/bin/zsh" >> /etc/shells
    }
