mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2024-12-12 06:51:25 -08:00
14 lines
305 B
Plaintext
14 lines
305 B
Plaintext
post_install() {
|
|
grep -q '/usr/bin/ash' etc/shells || echo '/usr/bin/ash' >> etc/shells
|
|
grep -q '/usr/bin/dash' etc/shells || echo '/usr/bin/dash' >> etc/shells
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
pre_remove() {
|
|
sed -i '/^\/usr\/bin\/ash/d' etc/shells
|
|
sed -i '/^\/usr\/bin\/dash/d' etc/shells
|
|
}
|