I run one program which needs to be started as a particular user whenever the system comes up, but there is no ebuild. Is this the Gentoo way?
# cat /etc/init.d/rc.local
#!/sbin/runscript
start() {
su user
/path/to/program/binary
}
- Grant
I run one program which needs to be started as a particular user whenever the system comes up, but there is no ebuild. Is this the Gentoo way?
# cat /etc/init.d/rc.local
#!/sbin/runscript
start() {
su user
/path/to/program/binary
}
- Grant