blob: 6e1c5178e74068af505f8a7c22de99584df35b50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
grep -qe '^/usr/bin/yash$' etc/shells || echo '/usr/bin/yash' >> etc/shells
}
post_upgrade() {
post_install
}
pre_remove() {
sed -i -r '/^(\/usr)?\/bin\/yash$/d' etc/shells
}
|