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