Skip to content
Snippets Groups Projects
Commit c4d3a11a authored by Erick Hitter's avatar Erick Hitter
Browse files

Merge branch 'fix/ancient-standards' into 'master'

Address most Lintian feedback

See merge request !4
parents 3f869ad5 d91f0d56
Branches
No related tags found
Loading
Checking pipeline status
Source: nginx
Maintainer: Erick Hitter <nginx-build@mxh.ethitter.com>
Build-Depends: debhelper (>= 8.0.0)
Standards-Version: 3.9.3
Standards-Version: 4.3.0
Section: httpd
Package: nginx
Priority: optional
Architecture: amd64
Depends: ${shlibs:Depends}, ${misc:Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}, lsb-base (>= 3.0-6)
Description: high performance web server
nginx [engine x] is an HTTP and reverse proxy server, as well as
a mail proxy server.
#!/bin/sh
set -e
update-rc.d nginx defaults
#DEBHELPER#
#!/bin/sh
set -e
update-rc.d nginx remove
#DEBHELPER#
......@@ -8,23 +8,23 @@ export DESTROOT=$(CURDIR)/debian/nginx
override_dh_auto_install:
dh_auto_install
install -D -p -m 0755 ../nginx-build $(DESTROOT)/usr/sbin/nginx
install -D -p etc/default/nginx $(DESTROOT)/etc/default/nginx
install -D -p etc/init.d/nginx $(DESTROOT)/etc/init.d/nginx
install -D -p etc/logrotate.d/nginx $(DESTROOT)/etc/logrotate.d/nginx
install -D -p etc/nginx/fastcgi_params $(DESTROOT)/etc/nginx/fastcgi_params
install -D -p etc/nginx/koi-utf $(DESTROOT)/etc/nginx/koi-utf
install -D -p etc/nginx/koi-win $(DESTROOT)/etc/nginx/koi-win
install -D -p etc/nginx/mime.types $(DESTROOT)/etc/nginx/mime.types
install -D -p etc/nginx/nginx.conf $(DESTROOT)/etc/nginx/nginx.conf
install -D -p etc/nginx/scgi_params $(DESTROOT)/etc/nginx/scgi_params
install -D -p etc/nginx/uwsgi_params $(DESTROOT)/etc/nginx/uwsgi_params
install -D -p etc/nginx/win-utf $(DESTROOT)/etc/nginx/win-utf
install -D -p etc/nginx/conf.d/default.conf $(DESTROOT)/etc/nginx/conf.d/default.conf
install -d -p etc/nginx/modules $(DESTROOT)/etc/nginx/modules
install -d -p usr/lib/nginx/modules/ $(DESTROOT)/usr/lib/nginx/modules/
install -D -p usr/share/doc/nginx/copyright $(DESTROOT)/usr/share/doc/nginx/copyright
install -D -p usr/share/doc/nginx/README $(DESTROOT)/usr/share/doc/nginx/README
install -D -p usr/share/nginx/html/50x.html $(DESTROOT)/usr/share/nginx/html/50x.html
install -D -p usr/share/nginx/html/index.html $(DESTROOT)/usr/share/nginx/html/index.html
install -d -p var/cache/nginx/ $(DESTROOT)/var/cache/nginx/
install -d -p var/log/nginx/ $(DESTROOT)/var/log/nginx/
install -D -p -m 0644 etc/default/nginx $(DESTROOT)/etc/default/nginx
install -D -p -m 0644 etc/init.d/nginx $(DESTROOT)/etc/init.d/nginx
install -D -p -m 0644 etc/logrotate.d/nginx $(DESTROOT)/etc/logrotate.d/nginx
install -D -p -m 0644 etc/nginx/fastcgi_params $(DESTROOT)/etc/nginx/fastcgi_params
install -D -p -m 0644 etc/nginx/koi-utf $(DESTROOT)/etc/nginx/koi-utf
install -D -p -m 0644 etc/nginx/koi-win $(DESTROOT)/etc/nginx/koi-win
install -D -p -m 0644 etc/nginx/mime.types $(DESTROOT)/etc/nginx/mime.types
install -D -p -m 0644 etc/nginx/nginx.conf $(DESTROOT)/etc/nginx/nginx.conf
install -D -p -m 0644 etc/nginx/scgi_params $(DESTROOT)/etc/nginx/scgi_params
install -D -p -m 0644 etc/nginx/uwsgi_params $(DESTROOT)/etc/nginx/uwsgi_params
install -D -p -m 0644 etc/nginx/win-utf $(DESTROOT)/etc/nginx/win-utf
install -D -p -m 0644 etc/nginx/conf.d/default.conf $(DESTROOT)/etc/nginx/conf.d/default.conf
install -d -p -m 0755 etc/nginx/modules $(DESTROOT)/etc/nginx/modules
install -d -p -m 0755 usr/lib/nginx/modules/ $(DESTROOT)/usr/lib/nginx/modules/
install -D -p -m 0644 usr/share/doc/nginx/copyright $(DESTROOT)/usr/share/doc/nginx/copyright
install -D -p -m 0644 usr/share/doc/nginx/README $(DESTROOT)/usr/share/doc/nginx/README
install -D -p -m 0644 usr/share/nginx/html/50x.html $(DESTROOT)/usr/share/nginx/html/50x.html
install -D -p -m 0644 usr/share/nginx/html/index.html $(DESTROOT)/usr/share/nginx/html/index.html
install -d -p -m 0755 var/cache/nginx/ $(DESTROOT)/var/cache/nginx/
install -d -p -m 0755 var/log/nginx/ $(DESTROOT)/var/log/nginx/
1.0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment