mirror of
https://github.com/notherealmarco/coredns-deployment.git
synced 2025-03-14 14:16:16 +01:00
debian: build all 3 ARCHs (#150)
Just build them all, and some typos fixed. Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
parent
8fbbcc6ae8
commit
6530a4f15a
2 changed files with 5 additions and 5 deletions
4
Makefile
4
Makefile
|
@ -1,7 +1,7 @@
|
|||
# Makefile for building packages for CoreDNS.
|
||||
|
||||
# ARCH can be and default to amd64 is not set.
|
||||
# ARCH := amd64 armhf arm64
|
||||
ARCH := amd64 armhf arm64
|
||||
|
||||
ifeq ($(ARCH),)
|
||||
ARCH:=amd64
|
||||
|
@ -10,7 +10,7 @@ endif
|
|||
.PHONY: debian
|
||||
debian:
|
||||
for a in $(ARCH); do \
|
||||
dpkg-buildpackage -us -uc -b --target-arch $$aa ;\
|
||||
dpkg-buildpackage -us -uc -b --target-arch $$a ;\
|
||||
done
|
||||
|
||||
debian-clean:
|
||||
|
|
6
debian/coredns.service
vendored
6
debian/coredns.service
vendored
|
@ -7,9 +7,9 @@ After=network.target
|
|||
PermissionsStartOnly=true
|
||||
LimitNOFILE=1048576
|
||||
LimitNPROC=512
|
||||
CapabilityBoundingSet=CAP_NET_BIND_SERVICE
|
||||
AmbientCapabilities=CAP_NET_BIND_SERVICE
|
||||
NoNewPrivileges=true
|
||||
CapabilityBoundingSet=CAP_NET_BIND_SERVICE
|
||||
AmbientCapabilities=CAP_NET_BIND_SERVICE
|
||||
NoNewPrivileges=true
|
||||
User=coredns
|
||||
WorkingDirectory=~
|
||||
ExecStart=/usr/bin/coredns -conf=/etc/coredns/Corefile
|
||||
|
|
Loading…
Reference in a new issue