I search the forums and this question hsa been asked before but no one ever answers... maybe it just can't be done. Anyways, I'm creating a bash script to start certain services after my system has goten to the desktop. The thing is though the service command requires a root login / password. Is there a way to have bash log into root, then log back out? For example:
Code:
su -
<login>
service network start
<log out>
Something like that?