updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / sash / sash.install
blob0ea82e89417a1cddd3bc98e048c69883f41d6484
1 # arg 1: the new package version
2 post_install() {
3   if [ ! "`/bin/grep /bin/sash etc/shells`" ]; then
4     /bin/echo "updating /etc/shells... done."
5     /bin/sed -i "s|/bin/sh|/bin/sh\n/bin/sash|" etc/shells
6   fi
9 # arg 1: the new package version
10 # arg 2: the old package version
11 post_upgrade() {
12         post_install $1
15 # arg 1: the old package version
16 pre_remove() {
17   /bin/echo -ne "\nupdating /etc/shells... "
18   /bin/sed -i "\|/bin/sash|d" etc/shells
21 # arg 1: the old package version
22 post_remove() {
23   /bin/true
26 op=$1
27 shift
29 $op $*
30 # vim: ts=2: ft=sh