LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Security (https://www.linuxquestions.org/questions/linux-security-4/)
-   -   Deleting a file created by root (https://www.linuxquestions.org/questions/linux-security-4/deleting-a-file-created-by-root-334483/)

statman 06-17-2005 02:52 AM

Deleting a file created by root
 
Without going into too much detail:
I have a daemon running as a root process.
It creates a file (e.g. foo) that serves as a signal to a bash script.
Once the bash script detects the presence of foo, it performs its actions and then is supposed to delete the foo file.

The bash script is started automatically when any non-root account is logged into. The problem occurs when the bash script tries to delete foo, I get a 'permission denied' message.

As I understand it, since the bash script is running as a process under a user acct, it does not have the permission to delete a file created by a root process.

I tried having the root process use chmod 777 foo, but this still did not allow the bash script to delete the foo.

What am I doing wrong? I am using RedHat Fedora 3

Any help is much appreciated :)

hardcorelinux 06-17-2005 03:12 AM

check the permissions of your script running folder also,check whether a nonroot user can able to access it or not.

Noth 06-17-2005 10:22 AM

You need write access to the parent directory to delete files, not the files themselves.


All times are GMT -5. The time now is 07:21 AM.