Skip to content

Commit

Permalink
[FIXED JENKINS-5784] logrotate script for RPM/openSUSE bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kohsuke committed Feb 4, 2011
1 parent 15c66f0 commit 9c01038
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions changelog.html
Expand Up @@ -52,6 +52,9 @@
<li class=bug>
Fixed a JVM dependency in debian package so that it can run with OpenJDK
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8159">issue 8159</a>)
<li class=bug>
Fixed a log rotation configuration problem on Red Hat
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5784">issue 5784</a>)
<li class=rfe>
Debian package will force-terminate Jenkins if it fails to shut down in 5 seconds.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-5415">issue 5415</a>)
Expand Down
2 changes: 1 addition & 1 deletion opensuse/SOURCES/jenkins.logrotate
Expand Up @@ -8,6 +8,6 @@
missingok
create 644
postrotate
kill -SIGALRM `cat /var/run/jenkins.pid`
kill -s SIGALRM `cat /var/run/jenkins.pid`
endscript
}
2 changes: 1 addition & 1 deletion rpm/SOURCES/jenkins.logrotate
Expand Up @@ -8,6 +8,6 @@
missingok
create 644
postrotate
kill -SIGALRM `cat /var/run/jenkins.pid`
kill -s SIGALRM `cat /var/run/jenkins.pid`
endscript
}

0 comments on commit 9c01038

Please sign in to comment.