12 lines
182 B
Plaintext
12 lines
182 B
Plaintext
post_install() {
|
|
bin/grep -q '/bin/dash' etc/shells || echo '/bin/dash' >> etc/shells
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
pre_remove() {
|
|
bin/sed -i '/^\/bin\/dash/d' etc/shells
|
|
}
|