I have a hard link to a service script in /etc/init.d/ that points to a shell script (bash). The permissions show owner, user and group permissions to be rwx for everyone.
However, when I run the $find /etc/init.d/ -group myuser command, nothing in the directory shows up for myuser, even though it appears anyone can execute the script. I double checked and when I run $find /etc/init.d/ -group root, the output shows the permissions for root just fine.
Any ideas what's going on? When I execute the service it appears to run fine (it's supposed to shut down some processes by pid), however when I ps -ef the processes, they are still running.
Baffling...