Very time I set the shell for a users shell to /bin/ibsh
They end up getting a screen full of "junk" and then it
kicks them out with out loggin any error.
The "Junk" is in the attached file.
-- Systems setup --
OS : CentOS 4.0 w/ SELinux disabled
CPU : 2.4 ghz
RAM : 1.5 Gigs
Junk output
Logged In: YES
user_id=460945
I was able to fix this issue.
in the install docs it says to just run
make ibsh_install
echo /bin/ibsh >> /etc/shells
chmod -R 0755 /etc/ibsh
chmod 0755 /bin/ibsh
So i blindy fallowed that. Which was wrong.
What I needed to do was go into src and run
cp ../global.* ./
make
make ibsh_install
echo /bin/ibsh >> /etc/shells
chmod -R 0755 /etc/ibsh
chmod 0755 /bin/ibsh
And this allows me to run ibsh. with out the junk :)