Im writing a script that should do this...

chroot /chroot_dir/ su -
./startup.sh (This should run within the su environment)

I have tried this approach:

chroot /chroot_dir /bin/bash -c " su -; ./startup.sh"

This tries to execute the user switching and the script as a string command to bash...however what it does, is it "stops" after "su -" and doesnt execute the script. However, once I leave the "su -" environment, it does try to run startup.sh but of course, it cant find it.

Basically I need to nest the "startup.sh" to be run inside the "su -" environment...

Any ideas?

Thanks a lot

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

try

chroot /chroot_dir /bin/bash -c "su - -c ./startup.sh"
link|improve this answer
thanks so much, I dont know how I didnt see this in the man page! – dgrandes Nov 17 '11 at 15:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.