~ubuntu-branches/ubuntu/raring/nginx/raring

« back to all changes in this revision

Viewing changes to debian/logrotate

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry, Michael Lustfield, Kartik Mistry
  • Date: 2012-10-30 10:10:34 UTC
  • mfrom: (4.2.54 sid)
  • Revision ID: package-import@ubuntu.com-20121030101034-fovn0siwczi3jian
Tags: 1.2.4-1
[ Michael Lustfield ]
* debian/nginx-common.nginx.init
  + Added --retry to start-stop-daemon. (Closes: #682360)
  + Added $named to Required-Start/Stop. (Closes: #679879)
  + Added some other modifications after testing. (LP: #1033856)
* debian/rules:
  + Added -DFORTIFY_SOURCE=2 -fstack-protector to build flags.
    (Closes: #680712)
* debian/nginx-common.install:
  + Moved default docs to /usr/share/nginx/html. (Closes: #1031515)
* debian/rules:
  + Set prefix to /usr/share/nginx.
* debian/po/fr.po
  + Updated French translation file. (Closes: #679601)
* debian/logrotate:
  + Removed semicolon after an fi statement. (Closes: #683870)
* debian/copyright:
  + Removed trailing slash from File: fields.
* Changed /var/run to /run in multiple files. (LP: #1050516)
* debian/nginx-common.dirs:
  + Added /run to .dirs to avoid conflicts with backports. (LP: #1072641)
* debian/nginx-*.postinst:
  + Added sites-enabled/available directory checks. (Closes: #688410)
    - Thanks Andreas Marschke <andreas.marschke@gmail.com>
  + Moved the symlink creation to nginx-common.
* Updated debconf templates.
* conf/sites-available/default:
  + Updated root to point at /usr/share/nginx/html instead of www.

[ Kartik Mistry ]
* Acknowledged NMUs (Closes: #681758, #681381)
* New upstream release (Closes: #683704)
* debian/po/*.po:
  + Removed ^M characters from headers.
  + Fixed all files with recent unneeded template change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
        prerotate
11
11
                if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
12
12
                        run-parts /etc/logrotate.d/httpd-prerotate; \
13
 
                fi; \
 
13
                fi \
14
14
        endscript
15
15
        postrotate
16
 
                [ ! -f /var/run/nginx.pid ] || kill -USR1 `cat /var/run/nginx.pid`
 
16
                [ ! -f /run/nginx.pid ] || kill -USR1 `cat /run/nginx.pid`
17
17
        endscript
18
18
}