1836993 Members
2099 Online
110111 Solutions
New Discussion

disable DCE root access

 
jpcast_real
Regular Advisor

disable DCE root access

I am trying to avoid root login to DCE but it doesn't work .. I have introduced in the /etc/dt/config/Xstartup file

test=`whoami`
if [[ ${test} = root ]]
then exit 1
fi

But when i introduce this every user is rejected.. It seems that every user is root at this point of execution and all of them are rejected....

What can i do
Here rests one who was not what he wanted and didn't want what he was
2 REPLIES 2
Jeroen Peereboom
Honored Contributor

Re: disable DCE root access

You can put the checks in root's .dtprofile.
That certainly won't harm other users...

JP.
jpcast_real
Regular Advisor

Re: disable DCE root access

Thank you ,,, you are right....
Here rests one who was not what he wanted and didn't want what he was