jobcore/dash/dash.install
2022-03-20 14:19:37 +02:00

11 lines
174 B
Text

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
}