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

post_upgrade() {
	post_install
}

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