summarylogtreecommitdiffstats
path: root/vex.install
blob: 3870bf879463de1a63f7c886c21412d6c4eb3691 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
post_install() {
    if ! grep -q '/usr/bin/vex' /etc/shells; then
        echo '/usr/bin/vex' >> /etc/shells
    fi
    echo ""
    echo "  To set vex as your default shell:"
    echo "    chsh -s /usr/bin/vex"
    echo ""
}

post_upgrade() {
    post_install
}

post_remove() {
    sed -i '/\/usr\/bin\/vex/d' /etc/shells
}