mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-09 03:50:24 +00:00
7 lines
176 B
Plaintext
7 lines
176 B
Plaintext
case $1 in
|
|
post-install|post-upgrade)
|
|
grep -qe '^/bin/mksh$' etc/shells || echo '/bin/mksh' >> etc/shells ;;
|
|
post-remove)
|
|
sed -i -r '/^\/bin\/mksh$/d' etc/shells ;;
|
|
esac
|