#!/bin/sh

implementar_zsh() {
    if [ ! -x /usr/bin/zsh ]; then
	return
    fi

    chsh --shell /usr/bin/zsh canaima
    chsh --shell /usr/bin/zsh root
}

implementar_zsh
