Bug 200843

Summary: rss-glx: world writable docs
Product: [Fedora] Fedora Reporter: Ville Skyttä <scop>
Component: rss-glxAssignee: Nils Philippsen <nphilipp>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: medium    
Version: 5CC: extras-qa
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2006-08-01 12:08:07 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Ville Skyttä 2006-07-31 21:27:42 UTC
3 files in rss-glx's docs (FE5 and devel) are world writable.  See bug
200794 for background and more info.

Comment 1 Nils Philippsen 2006-08-01 12:08:07 UTC
rss-glx-0.8.1.p-5 is building for FC5 and Rawhide. The culprit was just copying
over source files instead of using install so they files inherited my local
(002) umask.

Comment 2 Ville Skyttä 2006-08-01 16:30:41 UTC
Actually your local umask should not affect anything in the buildsys, but this
is most likely an issue with the buildsys having 000 umask when it checks out
stuff to build from CVS.

Comment 3 Nils Philippsen 2006-08-02 14:48:44 UTC
Well, the files were created and checked in with my local umask, CVS tends to
retain these permissions, so they propagated into the build system.


Comment 4 Ville Skyttä 2006-08-02 16:09:14 UTC
CVS remembers only whether the file had executable bits on at initial check in
time and retains that status, everything else is forgotten, and decided by the
checkouter's umask at checkout time.  Besides, your local umask was 002, not 000 ;)

$ umask
0022
$ rm README.fedora ; cvs -Q up README.fedora
$ ls -l README.fedora | cut -d' ' -f 1
-rw-r--r--
$ umask 000
$ umask
0000
$ rm README.fedora ; cvs -Q up README.fedora
$ ls -l README.fedora | cut -d' ' -f 1
-rw-rw-rw-

Comment 5 Nils Philippsen 2006-08-03 11:46:55 UTC
Agreed.