jobcore/dash/dash.install

12 lines
174 B
Text
Raw Normal View History

2022-03-20 13:19:37 +01:00
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
}