summaryrefslogtreecommitdiff
path: root/share/opie-login/pre-session
Unidiff
Diffstat (limited to 'share/opie-login/pre-session') (more/less context) (show whitespace changes)
-rw-r--r--share/opie-login/pre-session4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/opie-login/pre-session b/share/opie-login/pre-session
index 1c2b630..28d4a1f 100644
--- a/share/opie-login/pre-session
+++ b/share/opie-login/pre-session
@@ -8,34 +8,34 @@ USER=$1
8 #question. We wish to ensure that, as a policy 8 #question. We wish to ensure that, as a policy
9 #choice, a login to opie makes access to these 9 #choice, a login to opie makes access to these
10 #devices exclusive by 1) changing device ownership 10 #devices exclusive by 1) changing device ownership
11 #to the user, and 2) removing group access. 11 #to the user, and 2) removing group access.
12# 12#
13 #A better implementation would probably be to store 13 #A better implementation would probably be to store
14 #existing device permissions at load time, and restore 14 #existing device permissions at load time, and restore
15 #them at exit, rather than making assumptions about 15 #them at exit, rather than making assumptions about
16 #user/group ownership, or permissions. 16 #user/group ownership, or permissions.
17 17
18permin () 18permin ()
19{ 19{
20 if [ -e $1 ] 20 if [ -e $1 ]
21 then 21 then
22 chown $USER $1 22 chown $USER $1
23 else 23 else
24 echo Warning: $1 does not exist. 24 echo Warning: $1 does not exist.
25 return 1 25 return 1
26 fi 26 fi
27} 27}
28 28
29if [ -e /proc/hal/model ]; then 29if [ -e /proc/hal/model ]; then
30 # fix for misconfigured devfsd 30 # fix for misconfigured devfsd
31 chmod +x /dev/sound /dev/touchscreen /dev/fb /dev/vc 31 chmod +x /dev/sound /dev/touchscreen /dev/fb /dev/vc
32 devs=/dev/sound/dsp /dev/sound/mixer /dev/touchscreen/0 \ 32 devs=/dev/sound/dsp /dev/sound/mixer /dev/touchscreen/* \
33 /dev/fb/0 /dev/vc/0 33 /dev/fb/0 /dev/vc/0
34else 34else
35 devs=/dev/dsp /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 \ 35 devs=/dev/dsp/* /dev/dsp1 /dev/mixer /dev/ts /dev/fb0 \
36 /dev/sharp* /dev/collie* 36 /dev/sharp* /dev/collie*
37fi 37fi
38 38
39for i in $devs; do 39for i in $devs; do
40 permin $i 40 permin $i
41done 41done