summaryrefslogtreecommitdiff
path: root/shells/bash/pkg-install
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2007-06-28 23:25:16 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2007-06-28 23:25:16 +0000
commitabe6aac47f38c0a7e53c8bdbfcf00e7780ab0237 (patch)
tree7a01bbeae92a9cb27ae2876b20e84a76aa2203ae /shells/bash/pkg-install
parent- Update to 1.9.4 (diff)
Add rbash.
PR: 104040 Submitted by: Jeremy Chadwick <freebsd@jdc.parodius.com>
Notes
Notes: svn path=/head/; revision=194421
Diffstat (limited to 'shells/bash/pkg-install')
-rw-r--r--shells/bash/pkg-install8
1 files changed, 8 insertions, 0 deletions
diff --git a/shells/bash/pkg-install b/shells/bash/pkg-install
index c84878485e07..c42db4871432 100644
--- a/shells/bash/pkg-install
+++ b/shells/bash/pkg-install
@@ -4,6 +4,7 @@
#
BASH="${PKG_PREFIX-/usr/local}/bin/bash"
+RBASH="${PKG_PREFIX-/usr/local}/bin/rbash"
SHELLS="${PKG_DESTDIR-}/etc/shells"
case $2 in
@@ -15,5 +16,12 @@ POST-INSTALL)
echo "Not root, please add $BASH to $SHELLS manually"
fi
fi
+ if [ -d "${SHELLS%/*}" ] && ! grep -qs "^$RBASH\$" "$SHELLS"; then
+ if [ `id -u` -eq 0 ]; then
+ echo "$RBASH" >> "$SHELLS"
+ else
+ echo "Not root, please add $RBASH to $SHELLS manually"
+ fi
+ fi
;;
esac