summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--share/opie-login/pre-session12
1 files changed, 5 insertions, 7 deletions
diff --git a/share/opie-login/pre-session b/share/opie-login/pre-session
index 28d4a1f..2fdf7e9 100644
--- a/share/opie-login/pre-session
+++ b/share/opie-login/pre-session
@@ -8,34 +8,32 @@ USER=$1
# question. We wish to ensure that, as a policy
# choice, a login to opie makes access to these
# devices exclusive by 1) changing device ownership
# to the user, and 2) removing group access.
#
# A better implementation would probably be to store
# existing device permissions at load time, and restore
# them at exit, rather than making assumptions about
# user/group ownership, or permissions.
permin ()
{
if [ -e $1 ]
then
chown $USER $1
else
echo Warning: $1 does not exist.
return 1
fi
}
if [ -e /proc/hal/model ]; then
# fix for misconfigured devfsd
chmod +x /dev/sound /dev/touchscreen /dev/fb /dev/vc
- devs=/dev/sound/dsp /dev/sound/mixer /dev/touchscreen/* \
- /dev/fb/0 /dev/vc/0
+ for i in /dev/sound/dsp /dev/sound/mixer /dev/touchscreen/* /dev/fb/0 /dev/vc/0; do
+ permin $i
+ done
else
- devs=/dev/dsp/* /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 \
- /dev/sharp* /dev/collie*
-fi
-
-for i in $devs; do
+ for i in /dev/dsp/* /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 /dev/sharp* /dev/collie*; do
permin $i
done
+fi