summarylogtreecommitdiffstats
path: root/dash.install
blob: ce29dcc9382439f76c0f9a1da16c6f1b2a8915e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
}