Initial euclide.org release
This commit is contained in:
6
debian/changelog
vendored
Normal file
6
debian/changelog
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
pdns-auth-proxy (0.9.7-1+ubuntu2) unstable; urgency=medium
|
||||
|
||||
[ Xavier Henner ]
|
||||
* Initial euclide.org release
|
||||
|
||||
-- root <xavier@euclide.org> Fri, 17 Nov 2023 04:52:00 +0000
|
||||
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@@ -0,0 +1 @@
|
||||
5
|
||||
15
debian/control
vendored
Normal file
15
debian/control
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
Source: pdns-auth-proxy
|
||||
Maintainer: Xavier Henner <xavier@euclide.org>
|
||||
Section: net
|
||||
Priority: optional
|
||||
Build-Depends:
|
||||
debhelper,
|
||||
golang-1.21
|
||||
Standards-Version: 4.4.1
|
||||
Vcs-Browser: https://git.euclide.org/euclide/pdns-auth-proxy
|
||||
Vcs-Git: https://git.euclide.org/euclide/pdns-auth-proxy.git
|
||||
|
||||
Package: pdns-auth-proxy
|
||||
Architecture: any
|
||||
Description: Proxy before pdns API
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}, pdns-server
|
||||
2
debian/gbp.conf
vendored
Normal file
2
debian/gbp.conf
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
[DEFAULT]
|
||||
pristine-tar = False
|
||||
5
debian/pdns-auth-proxy.default
vendored
Normal file
5
debian/pdns-auth-proxy.default
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
#pdns-auth-proxy base config
|
||||
|
||||
ENABLED=1
|
||||
CONFIGURATION="/etc/pdns-auth-proxy.config"
|
||||
OPTS="-syslog"
|
||||
17
debian/pdns-auth-proxy.service
vendored
Normal file
17
debian/pdns-auth-proxy.service
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
[Unit]
|
||||
Description=pdns-auth-proxy
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
User=pdns
|
||||
Group=pdns
|
||||
EnvironmentFile=/etc/default/pdns-auth-proxy
|
||||
StandardOutput=null
|
||||
StandardError=journal
|
||||
LimitNOFILE=65536
|
||||
ExecStart=/usr/sbin/pdns-auth-proxy -config ${CONFIGURATION} ${OPTS}
|
||||
Restart=always
|
||||
RestartSec=3
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
36
debian/rules
vendored
Executable file
36
debian/rules
vendored
Executable file
@@ -0,0 +1,36 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
build: build-stamp
|
||||
|
||||
build-stamp:
|
||||
dh_testdir
|
||||
$(MAKE) build
|
||||
touch build-stamp
|
||||
|
||||
clean:
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
rm -f build-stamp
|
||||
$(MAKE) clean
|
||||
dh_clean
|
||||
|
||||
install: build
|
||||
dh_testdir
|
||||
dh_prep
|
||||
dh_install pdns-auth-proxy /usr/sbin
|
||||
dh_install client/main.go /usr/share/doc/pdns-auth-proxy/client.go
|
||||
|
||||
binary-indep: build install
|
||||
|
||||
binary-arch: build install
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_installinit
|
||||
dh_fixperms
|
||||
dh_installdeb
|
||||
dh_gencontrol
|
||||
dh_md5sums
|
||||
dh_builddeb
|
||||
|
||||
binary: binary-indep binary-arch
|
||||
.PHONY: build clean binary-indep binary-arch binary install
|
||||
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
||||
Reference in New Issue
Block a user