<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Brian Olore Story &#187; unix</title>
	<atom:link href="http://brian.olore.net/wp/tag/unix/feed/" rel="self" type="application/rss+xml" />
	<link>http://brian.olore.net</link>
	<description>Less of a story, more of a brain dump</description>
	<lastBuildDate>Sun, 18 Dec 2011 17:19:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Subversion keeps changing permissions of my files [FIX]</title>
		<link>http://brian.olore.net/wp/2009/08/svn-permissions-fix/</link>
		<comments>http://brian.olore.net/wp/2009/08/svn-permissions-fix/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 18:06:03 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[permissions]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://brian.olore.net/?p=78</guid>
		<description><![CDATA[On my Unix machine whenever I did an &#8220;svn update&#8221; and files were actually updated, the permissions would change, rendering them inaccessible to the httpd process, therefore 403 Forbidden errors in the browser. After much searching that yielded a lot of results about storing executable flags in SVN using propset. This didn&#8217;t help as I [...]]]></description>
			<content:encoded><![CDATA[<p>On my Unix machine whenever I did an &#8220;svn update&#8221; and files were actually updated, the permissions would change, rendering them inaccessible to the httpd process, therefore 403 Forbidden errors in the browser.</p>
<p>After much searching that yielded a lot of results about storing executable flags in SVN using propset. This didn&#8217;t help as I didn&#8217;t want it to be executable, just world readable. Turns out the problem was in my .profile, my umask setting was 077. Changing it to 012 solved it for me. Note: 012 makes files you create group writable.</p>
<p>Snippet from my .profile</p>
<pre>#umask 077
umask 012
export SVN_SSH="ssh -l olore"
export EDITOR="/usr/bin/vi"</pre>
<p>Read more about <a href="http://en.wikipedia.org/wiki/Umask">umask on Wikipedia</a></p>
]]></content:encoded>
			<wfw:commentRss>http://brian.olore.net/wp/2009/08/svn-permissions-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

