summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-09-14 19:43:57 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-09-14 19:43:57 -0400
commitd454019309fb9887f40b2330866f26741b4e8078 (patch)
tree5cea5a9fdcad3115e8487e95cdfdda298c58aba2 /debian
parentf81f2c89fac457574ce9a427af6c91ba85461d34 (diff)
The monkeysphere system user must have bash as its shell for the simple su invocation to work. Do not try to explicitly preserve the environment across an su, as this is the default, and -m implies using the login shell of the superuser under FreeBSD.
Diffstat (limited to 'debian')
-rwxr-xr-xdebian/monkeysphere.postinst2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/monkeysphere.postinst b/debian/monkeysphere.postinst
index d3c3b96..981c9df 100755
--- a/debian/monkeysphere.postinst
+++ b/debian/monkeysphere.postinst
@@ -11,7 +11,7 @@ if ! getent passwd monkeysphere >/dev/null ; then
echo "adding monkeysphere user..."
adduser --quiet --system --no-create-home --group \
--home "$VARLIB" \
- --shell '/bin/sh' \
+ --shell '/bin/bash' \
--gecos 'monkeysphere authentication user,,,' \
monkeysphere
fi