summarylogtreecommitdiffstats
path: root/dash.install
blob: a267d85343a9bf91c1300039d5ab16a1ca842113 (plain)
1
2
3
4
5
6
7
8
9
10
11
post_install() {
    grep -q '/bin/dash' etc/shells || echo '/bin/dash' >> etc/shells
}

post_upgrade() {
    post_install
}

pre_remove() {
    sed -i '/^\/bin\/dash/d' etc/shells
}