search for: apache_user

Displaying 2 results from an estimated 2 matches for "apache_user".

2004 Dec 10
5
Group permissions not working on 3.0.8
Hi, I believe group permissions are not working well on Samba 3.0.8. I have two different problems that seems to be group permission related: 1. I have the following file: -r--rw---- 1 apache_user developers_group 13285 Dec 9 12:53 index.html I am a member of developers_group (not my primary group) and I can't edit this file. If I give apache_user (the file's owner) the write right then I can edit the file. Why? This only happens when I access the file through Samba, on the mach...
2007 Apr 17
3
Managing a user''s groups
I''m looking for a way to conditionally add a user to a group, and can''t figure out a clean way to do it in Puppet. I have the following recipe: ###### BEGIN RECIPE class "apache-server" { group { "apache": gid => 100, } user { "apache": uid => 100, gid => 100, } ... } class "site-a"