mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
15 lines
No EOL
262 B
Text
15 lines
No EOL
262 B
Text
post_install() {
|
|
if [ ! "`/bin/grep /bin/zsh /etc/shells`" ]; then
|
|
/bin/sed -i "s|/bin/bash|/bin/bash\n/bin/zsh|" /etc/shells
|
|
fi
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
/bin/sed -i '/^\/bin\/zsh/d' /etc/shells
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et: |