forked from mirage/ocaml-dns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dns-cli.opam
46 lines (42 loc) · 1.17 KB
/
dns-cli.opam
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
34
35
36
37
38
39
40
41
42
43
44
45
46
opam-version: "2.0"
maintainer: "team AT robur dot io"
authors: ["Hannes Mehnert <[email protected]>"]
homepage: "https://github.com/mirage/ocaml-dns"
doc: "https://mirage.github.io/ocaml-dns/"
dev-repo: "git+https://github.com/mirage/ocaml-dns.git"
bug-reports: "https://github.com/mirage/ocaml-dns/issues"
license: "BSD2"
depends: [
"dune" {build & >= "1.2.0"}
"ocaml" {>= "4.07.0"}
"dns" {= version}
"dns-tsig" {= version}
"dns-client-lwt" {= version}
"dns-zone" {= version}
"dns-server" {= version}
"dns-certify" {= version}
"rresult"
"bos"
"cmdliner" {>= "1.0.0"}
"fpath"
"x509"
"nocrypto"
"hex"
"ptime"
"logs"
"fmt"
"ipaddr" {>= "3.0.0"}
"alcotest" {with-test}
]
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
synopsis: "Unix command line utilities using uDNS"
description: """
'oupdate' sends a DNS update frome to a DNS server that sets 'hostname A ip'.
For authentication via TSIG, a hmac secret needs to be provided.
'ocertify' updates DNS with a certificate signing request, and polls a matching
certificate. Best used with an letsencrypt unikernel.
"""