#!/bin/sh

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