Skip to content

Commit

Permalink
[FIXED JENKINS-11714] Fixed the problem in the find command operator …
Browse files Browse the repository at this point in the history
  • Loading branch information
kohsuke committed Nov 30, 2011
1 parent 471566d commit 68a7f8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelog.html
Expand Up @@ -64,6 +64,9 @@
<li class=bug>
Fixed IPv6 handling in Winstone
(<a href="https://github.com/jenkinsci/winstone/pull/2">pull request #2</a>)
<li class=bug>
OS X installer can fail to set the file permissions correctly.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-11714">issue 11714</a>)
</ul>
</div><!--=TRUNK-END=-->

Expand Down
2 changes: 1 addition & 1 deletion osx/scripts/postinstall-launchd
Expand Up @@ -6,7 +6,7 @@ JENKINS_PLIST="/Library/LaunchDaemons/org.jenkins-ci.plist"
chown root:wheel ${JENKINS_PLIST}
chmod 644 ${JENKINS_PLIST}
mkdir -p /Users/Shared/Jenkins
find /Users/Shared/Jenkins -not -user daemon -or -not -group daemon -print0 | xargs -0 chown daemon:daemon
find /Users/Shared/Jenkins \( -not -user daemon -or -not -group daemon \) -print0 | xargs -0 chown daemon:daemon

# Load and start the launch daemon
/bin/launchctl load -w ${JENKINS_PLIST}

0 comments on commit 68a7f8e

Please sign in to comment.