-
Notifications
You must be signed in to change notification settings - Fork 7
/
nfpm.yaml
33 lines (33 loc) · 923 Bytes
/
nfpm.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# [nfpm](https://nfpm.goreleaser.com/) configuration file for which-dns
#
#
name: "which-dns"
arch: "amd64"
platform: "linux"
version: ${VERSION}
prerelease: ${PRERELEASE}
section: "httpd"
maintainer: "Andrew Marcuse <[email protected]>"
description: |
Detects which DNS server is being used
homepage: "http://which.nameserve.rs/"
license: "AGPLv3"
#changelog: "changelog.yaml"
contents:
- src: ./dist/which-dns
dst: /opt/which-dns/which-dns
- src: ./pkg/opt/which-dns/which-dns-run.sh
dst: /opt/which-dns/which-dns-run.sh
- src: ./pkg/lib/systemd/system/which-dns.service
dst: /lib/systemd/system/which-dns.service
file_info:
mode: 0755
- src: ./LICENSE.txt
dst: /usr/share/doc/which-dns/copyright
file_info:
mode: 0644
scripts:
preinstall: ./pkg/scripts/preinstall.sh
postinstall: ./pkg/scripts/postinstall.sh
preremove: ./pkg/scripts/preremove.sh
postremove: ./pkg/scripts/postremove.sh